getAttributs property

String get getAttributs

Implementation

String get getAttributs {
  var str = '';
  if (_attributs != null) {
    for (final key in _attributs!.keys) {
      str += '''\n  final $key ${_attributs![key]};''';
    }
  }
  return str;
}