removeGlobalHeader method
Removes a header that was previously added by the addGlobalHeader method
This is a non blocking call and can be await
ed
Implementation
Future<void> removeGlobalHeader({@required String headerName}) async {
await _channel.invokeMethod(WLCLIENT_REMOVEGLOBALHEADER,
<String, dynamic>{HEADER_NAME: headerName});
}