fromNative static method

KeyValuePair fromNative(
  1. KeyValuePairNative native
)

Implementation

static KeyValuePair fromNative(KeyValuePairNative native) {
  return KeyValuePair(
      key: to_platform.toPlatformString(native.key),
      value: to_platform.toPlatformString(native.value));
}