timeOfDay property
TimeOfDay?
get
timeOfDay
Implementation
TimeOfDay? get timeOfDay => this == null
? null
: TimeOfDay(hour: this?.hour ?? 0, minute: this?.minute ?? 0);
TimeOfDay? get timeOfDay => this == null
? null
: TimeOfDay(hour: this?.hour ?? 0, minute: this?.minute ?? 0);