mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
14 lines
347 B
Dart
14 lines
347 B
Dart
// Copyright 2021, the Flutter project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'book.dart';
|
|
|
|
class Author {
|
|
final int id;
|
|
final String name;
|
|
final books = <Book>[];
|
|
|
|
Author(this.id, this.name);
|
|
}
|