getConstructor property

String get getConstructor

Implementation

String get getConstructor {
  var str = '';
  if (_attributs != null) {
    for (final key in _attributs!.keys) {
      str += ', required this.${_attributs![key]}';
    }
  }
  return str;
}