AwsHeaderButtonBridge constructor

AwsHeaderButtonBridge({
  1. required String title,
  2. String? subtitle,
  3. required Widget leading,
  4. Widget? trailing,
  5. void onTap()?,
  6. EdgeInsetsGeometry? padding,
  7. bool cupertino = true,
  8. TextStyle? titleStyle,
  9. TextStyle? subtitleStyle,
})

Implementation

AwsHeaderButtonBridge({
  required this.title,
  this.subtitle,
  required this.leading,
  this.trailing,
  this.onTap,
  this.padding,
  this.cupertino = true,
  this.titleStyle,
  this.subtitleStyle,
});