copyWith method

AddApplicationChangelog copyWith({
  1. String? previousApplicationVersion,
})

Implementation

AddApplicationChangelog copyWith({
  String? previousApplicationVersion,
}) =>
    AddApplicationChangelog(
      previousApplicationVersion:
          previousApplicationVersion ?? this.previousApplicationVersion,
    );