createMeetLink static method
Creates a meeting link.
This method initiates the creation of a meeting link. Upon completion,
the provided callback function flyCallback
is invoked with a FlyResponse object,
which contains information about the success or failure of the operation.
Returns:
flyCallback
- A function that is called upon completion of the operation.
Implementation
static Future<void> createMeetLink(
{required Function(FlyResponse response) flyCallback}) {
return FlyChatFlutterPlatform.instance.createMeetLink(flyCallback);
}