LayoutFailure constructor

const LayoutFailure({
  1. required String schemaType,
  2. required String contentSchemaType,
  3. String? requestedLayoutType,
  4. Map<String, dynamic>? jsonPayload,
  5. String? description,
  6. List<String>? suggestions,
})

Implementation

const LayoutFailure({
  required super.schemaType,
  required this.contentSchemaType,
  this.requestedLayoutType,
  super.jsonPayload,
  super.description,
  super.suggestions,
});