getClientId method

Future<String?> getClientId(
  1. ClientConfigurationType type
)

Implementation

Future<String?> getClientId(ClientConfigurationType type) {
  var args = buildArguments();
  args[Args.type] = type.name;
  return _methodChannel.invokeMethod('getClientId', args);
}