All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dart.model.mustache Maven / Gradle / Ivy

The newest version!
part of {{pubName}}.api;

{{#models}}{{#model}}
@Entity()
class {{classname}} {
  {{#vars}}{{#description}}/* {{{description}}} */{{/description}}
  @Property(name: '{{baseName}}')
  {{{datatype}}} {{name}} = {{{defaultValue}}};
  {{#allowableValues}}{{#min}} // range from {{min}} to {{max}}{{/min}}//{{^min}}enum {{name}}Enum { {{#values}} {{.}}, {{/values}} };{{/min}}{{/allowableValues}}
  {{/vars}}
  {{classname}}();

  @override
  String toString()  {
    return '{{classname}}[{{#vars}}{{name}}=${{name}}, {{/vars}}]';
  }

}
{{/model}}{{/models}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy