SubTitleOptions constructor

SubTitleOptions({
  1. required String text,
  2. TextStyle style = const TextStyle(fontSize: 20, color: Colors.black, fontWeight: FontWeight.w500),
})

Implementation

SubTitleOptions({
  required this.text,
  this.style = const TextStyle(fontSize: 20, color: Colors.black, fontWeight: FontWeight.w500)
});