SecurityAccount constructor

SecurityAccount({
  1. String? email,
  2. String? phone,
  3. required bool hasSetPaymentPassword,
  4. required bool hasSetMasterPassword,
  5. String? paymentPasswordUpdatedAt,
})

Implementation

SecurityAccount(
    {this.email,
    this.phone,
    required this.hasSetPaymentPassword,
    required this.hasSetMasterPassword,
    this.paymentPasswordUpdatedAt});