putAttributes method

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

Implementation

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