fromNative static method

IndoorLevel fromNative(
  1. IndoorLevelNative native
)

Implementation

static IndoorLevel fromNative(IndoorLevelNative native) {
  return IndoorLevel(
      id: to_platform.toPlatformString(native.id),
      name: to_platform.toPlatformString(native.name),
      isUnderground: native.isUnderground);
}