OperationInfo.fromJson constructor

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

Implementation

factory OperationInfo.fromJson(Map<String, dynamic> json) {
  return OperationInfo(
    responseType: json['responseType'] ?? '',
    metadataType: json['metadataType'] ?? '',
  );
}