AuthSentCodePaymentRequired constructor

const AuthSentCodePaymentRequired({
  1. required String storeProduct,
  2. required String phoneCodeHash,
  3. required String supportEmailAddress,
  4. required String supportEmailSubject,
  5. required int premiumDays,
  6. required String currency,
  7. required int amount,
})

Auth Sent Code Payment Required constructor.

Implementation

const AuthSentCodePaymentRequired({
  required this.storeProduct,
  required this.phoneCodeHash,
  required this.supportEmailAddress,
  required this.supportEmailSubject,
  required this.premiumDays,
  required this.currency,
  required this.amount,
}) : super._();