ExportFrame constructor

const ExportFrame({
  1. required String frameId,
  2. required ExportDelegate exportDelegate,
  3. required Widget child,
  4. Key? key,
})

Implementation

const ExportFrame({
  required this.frameId,
  required this.exportDelegate,
  required this.child,
  super.key,
});