setView static method

Future<void> setView(
  1. String? name
)

Sets Human-readable name of logical view to which new beacons will be associated

Max length: 256 characters

Implementation

static Future<void> setView(String? name) async {
  await _channel.invokeMethod('setView', <String, dynamic>{'viewName': name});
}