getTimeFormatList method

Future<List<TimeFormatModel>> getTimeFormatList()

Implementation

Future<List<TimeFormatModel>> getTimeFormatList() async {
  NetworkResponse response = await _api.getTimeFormatList();
  return response.data ?? [];
}