AmwalWalletSettings constructor

AmwalWalletSettings({
  1. required String token,
  2. required List<String> terminalIds,
  3. required String secureHashValue,
  4. required bool isMocked,
  5. required Locale locale,
  6. required NavigatorObserver navigatorObserver,
})

Creates a new instance of AmwalWalletSettings.

All parameters are required to ensure proper SDK configuration.

Implementation

AmwalWalletSettings({
  required this.token,
  required this.terminalIds,
  required this.secureHashValue,
  required this.isMocked,
  required this.locale,
  required this.navigatorObserver,
});