fromValidated static method

CheckpointMessage fromValidated(
  1. Map<String, Object?> json
)

Implementation

static CheckpointMessage fromValidated(Map<String, Object?> json) =>
    CheckpointMessage(
      id: json['id'] as String,
      ts: json['ts'] as String,
      missionId: json['missionId'] as String,
      kind: json['kind'] as String,
      stateId: json['stateId'] as String?,
      digest: json['digest'] as String?,
      steps: json['steps'] as int?,
      at: json['at'] as String?,
    );