copyWith method

FormatOptionsHelper copyWith({
  1. List<FormatOption>? options,
})

Implementation

FormatOptionsHelper copyWith({
  List<FormatOption>? options,
}) {
  return FormatOptionsHelper(
    options: options ?? this.options,
  );
}