SimpleText constructor

const SimpleText({
  1. Key? key,
  2. required String text,
  3. double fontSize = 16,
  4. Color color = Colors.black,
})

Implementation

const SimpleText({
  Key? key,
  required this.text,
  this.fontSize = 16,
  this.color = Colors.black,
}) : super(key: key);