AdminSearchAccountsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const AdminSearchAccountsOutput({
  1. String? cursor,
  2. @AccountViewConverter() required List<AccountView> accounts,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory AdminSearchAccountsOutput({
  String? cursor,
  @AccountViewConverter() required List<AccountView> accounts,

  Map<String, dynamic>? $unknown,
}) = _AdminSearchAccountsOutput;