FaceButton constructor

const FaceButton({
  1. Key? key,
  2. required String title,
  3. required Color color,
  4. required Color focusColor,
  5. required bool isPressed,
  6. double size = 20,
  7. EdgeInsets padding = const EdgeInsets.all(12.0),
})

Implementation

const FaceButton({
  Key? key,
  required this.title,
  required this.color,
  required this.focusColor,
  required this.isPressed,
  this.size = 20,
  this.padding = const EdgeInsets.all(12.0),
}) : super(key: key);