toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'account'] = this.account;
    json[r'owners'] = this.owners;
    json[r'users'] = this.users;
    json[r'licenses'] = this.licenses;
    json[r'machines'] = this.machines;
  return json;
}