decode static method
Implementation
static PropertiesData decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return PropertiesData()..region = pigeonMap['region'] as String?;
}
static PropertiesData decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return PropertiesData()..region = pigeonMap['region'] as String?;
}