connectClient method
Implementation
@override
Future<String?> connectClient(
String projectId, NativebrikCachePolicy cachePolicy) async {
final result = await methodChannel.invokeMethod<String>(
'connectClient',
<String, dynamic>{
'projectId': projectId,
'cachePolicy': cachePolicy.toObject(),
},
);
return result;
}