SignUpData class

SignUpData model is to store/transfer signup mode data.

Annotations

Constructors

SignUpData({required String name, required String email, required String password, required String confirmPassword})
Contains name, email, password and confirmPassword fields. Overrides toString, hashCode methods and == operator.
const

Properties

confirmPassword String
Confirm password user entered
final
email String
Email of the user
final
hashCode int
This hashCode part is inspired from Quiver package. Quiver package link: https://pub.dev/packages/quiver
no setteroverride
name String
Name of the user
final
password String
Password of the user
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Overrides the toString method.
override

Operators

operator ==(Object other) bool
Overrides the equality operator.
override