getRegionalAreas method

Future<List<RegionalArea>> getRegionalAreas(
  1. int islandGroupId
)

Get the regional areas from the server

Implementation

Future<List<RegionalArea>> getRegionalAreas(int islandGroupId) =>
    _apiClient.getRegionalAreas(islandGroupId).catchError((error) {
      _crashlytics?.recordError(error, StackTrace.current);
      throw error;
    });