getDetailOobrInvitations method

Future<BrPlaceInviteModel?> getDetailOobrInvitations(
  1. dynamic oobrEventId
)

Implementation

Future<BrPlaceInviteModel?> getDetailOobrInvitations(oobrEventId) async {
  NetworkResponse response = await _api.getDetailOobrInvitations(oobrEventId);
  return response.data;
}