getOptionsForItem method

Future<List<PlaceMenuItemOption>> getOptionsForItem(
  1. dynamic itemId
)

Implementation

Future<List<PlaceMenuItemOption>> getOptionsForItem(itemId) async {
  NetworkResponse response =
      await _api.getOptionsForItem(itemId, appPrefs.languageCode);
  return response.data ?? [];
}