receiveCalls static method

Future<void> receiveCalls(
  1. String clientIdentifier
)

Implementation

static Future<void> receiveCalls(String clientIdentifier) async {
  final Map<String, dynamic> args = <String, dynamic>{
    "clientIdentifier": clientIdentifier
  };
  await _channel.invokeMethod('receiveCalls', args);
}