DocumentIcon constructor

DocumentIcon([
  1. String? _href,
  2. String? _type
])

Implementation

DocumentIcon([this._href, this._type]) {
  if (_href != null) _getIcon()?.setAttribute('href', _href!);
  if (_type != null) _getIcon()?.setAttribute('type', _type!);
}