setUserEmail static method

Future<void> setUserEmail(
  1. String? email
)

Sets User email which all new beacons will be associated with

Max length: 128 characters

Implementation

static Future<void> setUserEmail(String? email) async {
  await _channel
      .invokeMethod('setUserEmail', <String, dynamic>{'userEmail': email});
}