getClient method
Implementation
@override
Future<void> getClient(
{required String matchingKey, required String? bucketingKey}) {
_handlers.addAll({
_buildMapKey(matchingKey, bucketingKey):
SplitEventMethodCallHandler(matchingKey, bucketingKey)
});
return methodChannel.invokeMethod(
'getClient', _buildParameters(matchingKey, bucketingKey));
}