configure method

void configure(
  1. Map<String?, String?>? attributes
)

Implementation

void configure(Map<String?, String?>? attributes) {
  if (attributes != null && attributes.isNotEmpty) {
    this._attributes.addAll(attributes);
  }
}