getVariable static method

Future getVariable(
  1. String name
)

Get a variable or a group for the specified name.

  • @param {string} name - name.

Implementation

static Future<dynamic> getVariable(String name) async {
  return await _dartToNativeMethodChannel.invokeMethod('getVariable', {'name': name});
}