AAGridTemplate constructor

AAGridTemplate({
  1. required String title,
  2. required List<AAGridButton> buttons,
  3. List<String>? emptyViewTitleVariants,
  4. String? tabTitle,
  5. String? systemIcon,
  6. String? iconUrl,
})

Implementation

AAGridTemplate({
  required this.title,
  required this.buttons,
  this.emptyViewTitleVariants,
  this.tabTitle,
  this.systemIcon,
  this.iconUrl,
}) : _elementId = const Uuid().v4();