lazyStruct<R extends LayoutRepository> static method

LazyStructLayout<R> lazyStruct<R extends LayoutRepository>(
  1. List<BaseLazyStructLayoutBuilder<Object?, R>> fields, {
  2. String? property,
  3. R? repository,
  4. bool decodePrefixes = false,
})

Implementation

static LazyStructLayout<R> lazyStruct<R extends LayoutRepository>(
  List<BaseLazyStructLayoutBuilder<Object?, R>> fields, {
  String? property,
  R? repository,
  bool decodePrefixes = false,
}) => LazyStructLayout(
  fields,
  property: property,
  decodePrefixes: decodePrefixes,
  repository: repository,
);