toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final countryRestrictions = this.countryRestrictions;
  final owner = this.owner;
  final term = this.term;
  return {
    'countryRestrictions': ?countryRestrictions,
    'owner': ?owner,
    'term': ?term,
  };
}