copyWith method
EpubSpine
copyWith({
- Maybe<
String> tableOfContents = const Maybe.none(), - Maybe<
List< items = const Maybe.none(),EpubSpineItemRef> >
Implementation
EpubSpine copyWith(
{Maybe<String> tableOfContents = const Maybe.none(),
Maybe<List<EpubSpineItemRef>> items = const Maybe.none()}) =>
EpubSpine(tableOfContents.valueOr(this.tableOfContents),
items.valueOr(this.items));