copyWith method

EpubNavigationTarget copyWith({
  1. Maybe<String> id = const Maybe.none(),
  2. Maybe<String?> klass = const Maybe.none(),
  3. Maybe<String?> value = const Maybe.none(),
  4. Maybe<String> playOrder = const Maybe.none(),
  5. Maybe<List<EpubNavigationLabel>> navigationLabels = const Maybe.none(),
  6. Maybe<EpubNavigationContent> content = const Maybe.none(),
})

Implementation

EpubNavigationTarget copyWith(
        {Maybe<String> id = const Maybe.none(),
        Maybe<String?> klass = const Maybe.none(),
        Maybe<String?> value = const Maybe.none(),
        Maybe<String> playOrder = const Maybe.none(),
        Maybe<List<EpubNavigationLabel>> navigationLabels =
            const Maybe.none(),
        Maybe<EpubNavigationContent> content = const Maybe.none()}) =>
    EpubNavigationTarget(
        id.valueOr(this.id),
        klass.valueOr(this.klass),
        value.valueOr(this.value),
        playOrder.valueOr(this.playOrder),
        navigationLabels.valueOr(this.navigationLabels),
        content.valueOr(this.content));