KeypadWidget constructor

const KeypadWidget({
  1. Key? key,
  2. required String currencySymbol,
  3. required ValueChanged<KeypadResult> onResult,
  4. Decimal? maxAmount,
  5. KeypadPageSettings settings = const KeypadPageSettings(),
  6. bool hideConfirmButton = false,
  7. KeypadCubit? externalCubit,
})

Implementation

const KeypadWidget({
  super.key,
  required this.currencySymbol,
  required this.onResult,
  this.maxAmount,
  this.settings = const KeypadPageSettings(),
  this.hideConfirmButton = false,
  this.externalCubit,
});