setApiKey method

Future<void> setApiKey(
  1. String apiKey
)

Sets the API key for on-cloud services.

Implementation

Future<void> setApiKey(String apiKey) async {
  await _channel.invokeMethod(
    'bodyApp#setApiKey',
    <String, dynamic>{
      'apiKey': apiKey,
    },
  );
}