copyWith method
EpubContent
copyWith({
- Maybe<
Map< html = const Maybe.none(),String, EpubTextContentFile> > - Maybe<
Map< css = const Maybe.none(),String, EpubTextContentFile> > - Maybe<
Map< images = const Maybe.none(),String, EpubByteContentFile> > - Maybe<
Map< fonts = const Maybe.none(),String, EpubByteContentFile> >
Implementation
EpubContent copyWith(
{Maybe<Map<String, EpubTextContentFile>> html = const Maybe.none(),
Maybe<Map<String, EpubTextContentFile>> css = const Maybe.none(),
Maybe<Map<String, EpubByteContentFile>> images = const Maybe.none(),
Maybe<Map<String, EpubByteContentFile>> fonts =
const Maybe.none()}) =>
EpubContent(html.valueOr(this.html), css.valueOr(this.css),
images.valueOr(this.images), fonts.valueOr(this.fonts));