FFTestClick constructor

FFTestClick({
  1. Key? key,
  2. String? text,
  3. Function? onClick,
  4. Color? color = Colors.red,
  5. EdgeInsetsGeometry? margin = const EdgeInsets.all(2),
})

Implementation

FFTestClick({
  Key? key,
  this.text,
  this.onClick,
  this.color = Colors.red,
  this.margin = const EdgeInsets.all(2)
}) : super(key: key);