fromNative static method

LocalizedValue fromNative(
  1. LocalizedValueNative native
)

Implementation

static LocalizedValue fromNative(LocalizedValueNative native) {
  return LocalizedValue(
      value: native.value, text: to_platform.toPlatformString(native.text));
}