FlatButtonWidget constructor

const FlatButtonWidget({
  1. Key? key,
  2. ButtonExpand? expand,
  3. String? color,
  4. required String label,
  5. required Function? onPressed,
})

Implementation

const FlatButtonWidget(
    {Key? key,
    this.expand,
    this.color,
    required this.label,
    required this.onPressed})
    : super(key: key);