1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

Remove unnecessary types (#946)

This commit is contained in:
Ahmed Ashour
2022-01-05 01:39:45 +01:00
committed by GitHub
parent 7b5f1e52b4
commit 50d5dd968b
4 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ import 'book.dart';
class Author {
final int id;
final String name;
final List<Book> books = <Book>[];
final books = <Book>[];
Author(this.id, this.name);
}