SignInState constructor Null safety

const SignInState(
  1. {FormzStatus status = FormzStatus.pure,
  2. StudentCode studentCode = const StudentCode.pure(),
  3. Password password = const Password.pure(),
  4. SignInFailure? error}
)

Implementation

const SignInState({
  this.status = FormzStatus.pure,
  this.studentCode = const StudentCode.pure(),
  this.password = const Password.pure(),
  this.error,
});