NiceViewSchemaComponent constructor

const NiceViewSchemaComponent({
  1. required String id,
  2. required String type,
  3. String? title,
  4. NiceViewDataBinding? dataBinding,
  5. Map<String, dynamic> props = const {},
  6. List<NiceViewValidation> validations = const [],
  7. List<NiceViewSchemaComponent> children = const [],
  8. Map<String, dynamic> style = const {},
  9. List<String> permissions = const [],
})

Implementation

const NiceViewSchemaComponent({
  required this.id,
  required this.type,
  this.title,
  this.dataBinding,
  this.props = const {},
  this.validations = const [],
  this.children = const [],
  this.style = const {},
  this.permissions = const [],
});