IdentityUpdateHandleInput constructor

  1. @JsonSerializable(includeIfNull: false)
const IdentityUpdateHandleInput({
  1. required String handle,
  2. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory IdentityUpdateHandleInput({
  /// The new handle.
  required String handle,

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