AttachmentContainer constructor

const AttachmentContainer({
  1. dynamic key,
  2. required String name,
  3. required dynamic child,
})

Implementation

const AttachmentContainer({
  super.key,
  required this.name,
  required this.child,
});