defineVariables static method

Future<void> defineVariables(
  1. Map<String, dynamic> variables
)

Create variables.

  • @param {object} variables The JSON Object specifying the varibles to be created.

Implementation

static Future<void> defineVariables(Map<String, dynamic> variables) async {
  return await _dartToNativeMethodChannel.invokeMethod('defineVariables', {'variables': variables});
}