1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import 'dart:async';
import 'package:flutter_zoom_sdk/zoom_options.dart';
import 'package:flutter_zoom_sdk/zoom_view.dart';
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
export 'zoom_options.dart';
abstract class ZoomPlatform extends PlatformInterface {
ZoomPlatform() : super(token: _token);
static final Object _token = Object();
static ZoomPlatform _instance = ZoomView();
static ZoomPlatform get instance => _instance;
static set instance(ZoomPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}
/// Flutter Zoom SDK Initialization function
Future<List> initZoom(ZoomOptions options) async {
throw UnimplementedError('initZoom() has not been implemented.');
}
/// Flutter Zoom SDK Start Meeting function
Future<List> startMeeting(ZoomMeetingOptions options) async {
throw UnimplementedError('startMeetingLogin() has not been implemented.');
}
/// Flutter Zoom SDK Start Meeting with Custom Meeting ID function
Future<List> startMeetingNormal(ZoomMeetingOptions options) async {
throw UnimplementedError('startMeetingNormal() has not been implemented.');
}
/// Flutter Zoom SDK Join Meeting function
Future<bool> joinMeeting(ZoomMeetingOptions options) async {
throw UnimplementedError('joinMeeting() has not been implemented.');
}
/// Flutter Zoom SDK Get Meeting Status function
Future<List> meetingStatus(String meetingId) async {
throw UnimplementedError('meetingStatus() has not been implemented.');
}
/// Flutter Zoom SDK Listen to Meeting Status function
Stream<dynamic> onMeetingStatus() {
throw UnimplementedError('onMeetingStatus() has not been implemented.');
}
/// Flutter Zoom SDK Get Meeting ID & Passcode after Starting Meeting function
Future<List> meetinDetails() async {
throw UnimplementedError('meetingDetails() has not been implemented.');
}
}