PluginTxButton constructor

const PluginTxButton({
  1. Key? key,
  2. String? text,
  3. required Future<TxConfirmParams?> getTxParams(),
  4. dynamic onFinish(
    1. Map?
    )?,
  5. Widget? icon,
  6. Color? color,
})

Implementation

const PluginTxButton({
  Key? key,
  this.text,
  required this.getTxParams,
  this.onFinish,
  this.icon,
  this.color,
}) : super(key: key);