BasicInkwellButton constructor

const BasicInkwellButton({
  1. Key? key,
  2. String? text,
  3. Widget? child,
  4. required VoidCallback onPressed,
  5. Color? textColor,
  6. double? textFontSize,
  7. FontWeight? textFontWeight,
})

Implementation

const BasicInkwellButton({
  Key? key,
  this.text,
  this.child,
  required this.onPressed,
  this.textColor,
  this.textFontSize,
  this.textFontWeight,
}) : super(key: key);