fromWire static method

Implementation

static CommandProjectionImage fromWire(Object? v) {
  final m = v as Map<String, dynamic>;
  return CommandProjectionImage(
    generation: m['generation'] as int,
    commands: (m['commands'] as List)
        .map(CommandProjectionEntry.fromWire)
        .toList(),
  );
}