copyWith method

ExportDelegate copyWith({
  1. ExportOptions? options,
})

Copies the ExportDelegate with the given options.

Implementation

ExportDelegate copyWith({ExportOptions? options}) => ExportDelegate(
      options: options ?? this.options,
      ttfFonts: fontData.ttfFonts,
    );