UserRegistrationResponse constructor

const UserRegistrationResponse({
  1. String? jwt,
  2. @JsonKey.new(name: 'registration_created') bool? registrationCreated,
  3. @JsonKey.new(name: 'verify_email_sent') bool? verifyEmailSent,
})

Implementation

const factory UserRegistrationResponse({String? jwt, @JsonKey(name: 'registration_created') bool? registrationCreated, @JsonKey(name: 'verify_email_sent') bool? verifyEmailSent}) =
    _UserRegistrationResponse;