AppPassword constructor

  1. @JsonSerializable(includeIfNull: false)
const AppPassword({
  1. @Default('com.atproto.server.createAppPassword#appPassword') String $type,
  2. required String name,
  3. required String password,
  4. required DateTime createdAt,
  5. bool? privileged,
  6. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory AppPassword({
  @Default('com.atproto.server.createAppPassword#appPassword') String $type,
  required String name,
  required String password,
  required DateTime createdAt,
  bool? privileged,

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