copyWith method

Application copyWith({
  1. String? name,
  2. String? type,
})

Implementation

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