decode static method
Implementation
static MixWithOthersMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return MixWithOthersMessage(
mixWithOthers: pigeonMap['mixWithOthers'] as bool?,
);
}