ModelAttribute constructor

const ModelAttribute({
  1. required String name,
  2. required Map<String, String> arguments,
  3. int? line,
  4. int? column,
})

Creates a model attribute.

Implementation

const ModelAttribute({
  required this.name,
  required this.arguments,
  this.line,
  this.column,
});