MediaGrid constructor

const MediaGrid({
  1. Key? key,
  2. required List attachments,
  3. required bool isSender,
})

Implementation

const MediaGrid({
  super.key,
  required this.attachments,
  required this.isSender,
});