CopyWith
/// This is our Modddel
final book = Book(
id: '#1',
title: 'The adventures of Dash',
);
final otherBook = book.copyWith(
title: 'The mistery of Dash',
);/// This is our Modddel
final book = Book(
id: '#1',
title: 'The adventures of Dash',
);
final otherBook = book.copyWith(
title: 'The mistery of Dash',
);