toJson method

Map<String, Object?> toJson()

Implementation

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

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