CheckCurrentTime method
Implementation
CheckCurrentTime(String day, String time) {
return Padding(
padding: EdgeInsets.fromLTRB(5, 5, 0, 0),
child: Text(day.isEmpty ? "" : time,
style: TextStyle(fontSize: 10, fontWeight: FontWeight.w400)),
);
}