fromJson static method

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

Implementation

static TCICActionRepModel fromJson(Map<String, dynamic> json) {
  return TCICActionRepModel(
    errorCode: json['error_code'] ?? 0,
    errorMsg: json['error_msg'] ?? '',
    requestId: json['request_id'] ?? '',
  );
}