time property

String time

Implementation

String get time => _time!;
void time=(String time)

Implementation

set time(String time) {
  final int intValue = int.parse(time);

  if (intValue < _TIME_MIN || intValue > _TIME_MAX) {
    throw const FormatException('TimeOfWeek time param exceeded the range');
  }
  _time = time;
}