getLocalTime function

Future getLocalTime()

Implementation

Future getLocalTime() async {
  if (_LocalTime == null) {
    await _assignAllValues();
  }
  return _LocalTime ?? "Error Fetching Local Time";
}