removeGlobalHeader method

Future<void> removeGlobalHeader (
  1. {@required String headerName}
)

Removes a header that was previously added by the addGlobalHeader method

This is a non blocking call and can be awaited

Implementation

Future<void> removeGlobalHeader({@required String headerName}) async {
  return await _channel.invokeMethod(WLCLIENT_REMOVEGLOBALHEADER,
      <String, dynamic>{HEADER_NAME: headerName});
}