createMeetLink method
This method is used to create the meet link.
Implementation
@override
Future<void> createMeetLink(Function(FlyResponse response)? callback) async {
String? val = FlyConstants.empty;
try {
val = await mirrorFlyCallMethodChannel
.invokeMethod<String>('createMeetLink');
LogMessage.d('createMeetLink', ' $val');
callback?.call(
FlyResponse(true, val ?? 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)));
}
}