AddressButton constructor

const AddressButton({
  1. Key? key,
  2. required IReownAppKitModal service,
  3. BaseButtonSize size = BaseButtonSize.regular,
  4. String? assetPath,
  5. bool showNetwork = false,
  6. VoidCallback? onTap,
  7. Widget? child,
})

Implementation

const AddressButton({
  super.key,
  required this.service,
  this.size = BaseButtonSize.regular,
  this.assetPath,
  this.showNetwork = false,
  this.onTap,
  this.child,
});