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