getSid method

  1. @override
Future<String?> getSid()
override

Gets the active call's SID. This will be null until the first Ringing event occurs

Implementation

@override
Future<String?> getSid() {
  return _channel.invokeMethod<String?>('call-sid', <String, dynamic>{}).then<String?>((String? value) => value);
}