基础库
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }