initializeMeet method
Future<void>
initializeMeet(
- String callLink,
- String userName,
- dynamic callback(
- FlyResponse response
override
This method is used to initialize the meet.
Implementation
@override
Future<void> initializeMeet(String callLink, String userName,
Function(FlyResponse response)? callback) async {
bool? val = false;
try {
val = await mirrorFlyCallMethodChannel.invokeMethod(
'initializeMeet', {"callLink": callLink, "userName": userName});
LogMessage.d('initializeMeet', ' $val');
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}