BankAddressPreview constructor

const BankAddressPreview({
  1. required BankAddress address,
  2. Key? key,
  3. VoidCallback? onEdit,
  4. String editLabel = 'Edit',
  5. EdgeInsetsGeometry? padding,
  6. BorderRadius? radius,
  7. Color? backgroundColor,
  8. List<BoxShadow>? shadow,
  9. TextStyle? lineStyle,
  10. TextStyle? editLabelStyle,
})

Implementation

const BankAddressPreview({
  required this.address,
  super.key,
  this.onEdit,
  this.editLabel = 'Edit',
  this.padding,
  this.radius,
  this.backgroundColor,
  this.shadow,
  this.lineStyle,
  this.editLabelStyle,
});