toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var accountIds = this.accountIds;
  var usernames = this.usernames;

  final json = <String, Object?>{};
  json[r'accountIds'] = accountIds;
  json[r'usernames'] = usernames;
  return json;
}