updateScreenShareConsent abstract method

  1. @PUT.new("rtc/screenShareConsent")
Future<BaseResponse<ScreenShareConsentModel>> updateScreenShareConsent(
  1. @Header.new("Authorization") String token,
  2. @Body.new() Map<String, dynamic> body
)

Implementation

@PUT("rtc/screenShareConsent")
Future<BaseResponse<ScreenShareConsentModel>> updateScreenShareConsent(
  @Header("Authorization") String token,
  @Body() Map<String, dynamic> body,
);