Checkpoint.fromJson constructor
Implementation
factory Checkpoint.fromJson(Map<String, dynamic> json) {
return Checkpoint(
checkpointId: json['checkpointId'] ?? '',
epoch: decodeInt64(json['epoch']) ?? 0,
step: decodeInt64(json['step']) ?? 0,
);
}