TextOptions constructor

TextOptions({
  1. required String text,
  2. TextAlign textAlign = TextAlign.center,
  3. TextStyle style = const TextStyle(fontSize: 18, color: Colors.black, fontWeight: FontWeight.w600),
})

Implementation

TextOptions({
  required this.text,
  this.textAlign = TextAlign.center,
  this.style = const TextStyle(fontSize: 18, color: Colors.black, fontWeight: FontWeight.w600)
});