icon property

  1. @override
String? icon
override

Property getter and setter for icon:

Implementation

@override
String? get icon => _icon;
  1. @override
void icon=(String? icon)
override

Implementation

@override
set icon(String? icon) {
  this._icon = icon;
  wrapped['icon'] = jsonLiteral(icon);
}