copyWith method

ApplicationVersionInfo copyWith({
  1. String? name,
  2. String? version,
})

Implementation

ApplicationVersionInfo copyWith({
  String? name,
  String? version,
}) {
  final _copy_name = name ?? this.name;

  final _copy_version = version ?? this.version;

  return ApplicationVersionInfo(
    name: _copy_name,
    version: _copy_version,
  );
}