toTime property

String get toTime

Implementation

String get toTime {
  if (this != null && this!.isNotEmpty) {
    return DateTime.parse(this!).toTime;
  }
  return "";
}