confirmTicketByPro method

Future<EventInfoModel?> confirmTicketByPro(
  1. String ticketUniqueId,
  2. int status,
  3. String? comment
)

Implementation

Future<EventInfoModel?> confirmTicketByPro(
    String ticketUniqueId, int status, String? comment) async {
  NetworkResponse response =
      await _api.confirmTicketByPro(ticketUniqueId, status, comment);
  return response.data;
}