toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final certificateDomainMismatchInCountryList =
      this.certificateDomainMismatchInCountryList;
  final certificateMissingInCountryList =
      this.certificateMissingInCountryList;
  final countryConstraintList = this.countryConstraintList;
  final resellerConstraint = this.resellerConstraint;
  return {
    'certificateDomainMismatchInCountryList':
        ?certificateDomainMismatchInCountryList,
    'certificateMissingInCountryList': ?certificateMissingInCountryList,
    'countryConstraintList': ?countryConstraintList,
    'resellerConstraint': ?resellerConstraint,
  };
}