PlatformElevatedButton constructor

PlatformElevatedButton({
  1. Key? key,
  2. Key? widgetKey,
  3. VoidCallback? onPressed,
  4. Widget? child,
  5. EdgeInsetsGeometry? padding,
  6. AlignmentGeometry? alignment,
  7. Color? color,
  8. PlatformBuilder<MaterialElevatedButtonData>? material,
  9. PlatformBuilder<CupertinoElevatedButtonData>? cupertino,
})

Implementation

PlatformElevatedButton({
  super.key,
  this.widgetKey,
  this.onPressed,
  this.child,
  this.padding,
  this.alignment,
  this.color,
  this.material,
  this.cupertino,
});