fromJson static method

GetnetInfoResponse fromJson({
  1. required Map json,
})

Implementation

static GetnetInfoResponse fromJson({required Map json}) {
  return GetnetInfoResponse(
    result: json['result'],
    ec: json['ec'],
    numserie: json['numserie'],
    numlogic: json['numlogic'],
    version: json['version'],
    cnpjEC: json['cnpjEC'],
    razaoSocialEC: json['razaoSocialEC'],
    cidadeEC: json['cidadeEC'],
  );
}