setContext method
- String contextId
Implementation
static Future<bool> setContext(String contextId) async {
assert(contextId != null && contextId.isNotEmpty,
"contextId $_cannotBeNullOrEmpty");
final bool result = await _channel.invokeMethod(
_methodSetContext,
<String, dynamic>{"contextId": contextId},
);
return result;
}