fromNative static method

Time fromNative(
  1. TimeNative native
)

Implementation

static Time fromNative(TimeNative native) {
  return Time(
      value: native.value,
      tzOffset: native.tzOffset,
      text: to_platform.toPlatformString(native.text));
}