copyWith method
Implementation
EpubMetadataCreator copyWith(
{Maybe<String> creator = const Maybe.none(),
Maybe<String?> fileAs = const Maybe.none(),
Maybe<String?> role = const Maybe.none()}) =>
EpubMetadataCreator(creator.valueOr(this.creator),
fileAs.valueOr(this.fileAs), role.valueOr(this.role));