addSeenSuggestionEventFromUser method

Future<bool> addSeenSuggestionEventFromUser(
  1. dynamic publicEventId,
  2. dynamic utcModifier
)

Implementation

Future<bool> addSeenSuggestionEventFromUser(
    publicEventId, utcModifier) async {
  NetworkResponse response =
      await _api.addSeenSuggestionEventFromUser(publicEventId, utcModifier);
  return response.data ?? false;
}