InputStorePaymentAuthCode constructor

const InputStorePaymentAuthCode({
  1. required bool restore,
  2. required String phoneNumber,
  3. required String phoneCodeHash,
  4. required int premiumDays,
  5. required String currency,
  6. required int amount,
})

Input Store Payment Auth Code constructor.

Implementation

const InputStorePaymentAuthCode({
  required this.restore,
  required this.phoneNumber,
  required this.phoneCodeHash,
  required this.premiumDays,
  required this.currency,
  required this.amount,
}) : super._();