Answers for "get seconds from timestamp flutter"

3

flutter get millis time

void main() {
  print(DateTime.now().millisecondsSinceEpoch);
}
Posted by: Guest on December-16-2020
7

flutter date time to timestamp

DateTime currentPhoneDate = DateTime.now(); //DateTime

Timestamp myTimeStamp = Timestamp.fromDate(currentPhoneDate); //To TimeStamp

DateTime myDateTime = myTimeStamp.toDate(); // TimeStamp to DateTime

print("current phone data is: $currentPhoneDate");
print("current phone data is: $myDateTime");
Posted by: Guest on June-22-2020

Code answers related to "get seconds from timestamp flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language