decode static method
Implementation
static PlaybackSpeedMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return PlaybackSpeedMessage()
..textureId = pigeonMap['textureId'] as int?
..speed = pigeonMap['speed'] as double?;
}