Layout constructor

Layout({
  1. String? type,
  2. String? scope,
  3. List<UISchemaElement>? elements,
  4. String? label,
  5. String? text,
  6. Map<String, dynamic>? options,
})

Implementation

Layout({
  String? type,
  String? scope,
  List<UISchemaElement>? elements,
  String? label,
  String? text,
  Map<String, dynamic>? options,
}) : super(
        type: type,
        scope: scope,
        elements: elements,
        label: label,
        text: text,
        options: options,
      );