putAttributes method

Future<void> putAttributes(
  1. Map<String, dynamic> attributes
)

Implementation

Future<void> putAttributes(Map<String, dynamic> attributes) async {
  try {
    _channel.invokeMethod('putAttributes', attributes);
  } on Exception catch (e) {
    Logger.i("$e Error in putAttributes");
  }
}