BaseEmptyAction constructor

const BaseEmptyAction({
  1. required String text,
  2. Color? color,
  3. bool isInverted = false,
  4. VoidCallback? onPressed,
})

Implementation

const BaseEmptyAction({
  required this.text,
  this.color,
  this.isInverted = false,
  this.onPressed,
});