getSid method

Future<String?> getSid()

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

Implementation

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