copyWith method
Implementation
Application copyWith({String? name, String? type}) {
return Application(
name: name ?? this.name,
type: type ?? this.type,
);
}
Application copyWith({String? name, String? type}) {
return Application(
name: name ?? this.name,
type: type ?? this.type,
);
}