基础库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

time_util.dart 193 B

12345678910
  1. class TimeUtil{
  2. /// 获取时间戳,单位:秒
  3. static String getNowTime() {
  4. int timestamp = (DateTime.now().millisecondsSinceEpoch / 1000).floor();
  5. return "$timestamp";
  6. }
  7. }