getDateFormatList method

Future<List<DateFormatModel>> getDateFormatList()

Implementation

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