PluginAddressFormItem constructor

const PluginAddressFormItem({
  1. Key? key,
  2. String? label,
  3. String? svg,
  4. Future<void> onTap()?,
  5. required KeyPairData account,
  6. bool isDisable = true,
})

Implementation

const PluginAddressFormItem(
    {Key? key,
    this.label,
    this.svg,
    this.onTap,
    required this.account,
    this.isDisable = true})
    : super(key: key);