timeIntervalSince1970 property

Future<double?> timeIntervalSince1970

时间戳 单位秒

Implementation

Future<double?> get timeIntervalSince1970 {
  return kMethodChannel.invokeMethod<double>(
    'NSDate::get_timeIntervalSince1970',
    {'__this__': this},
  );
}