RecordOutput.fromJson constructor

RecordOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RecordOutput.fromJson(Map<String, dynamic> json) {
  return RecordOutput(
    description: json['Description'] as String?,
    outputKey: json['OutputKey'] as String?,
    outputValue: json['OutputValue'] as String?,
  );
}