Memo.dart 93 B

12345
  1. import 'package:gobang/flyweight/Position.dart';
  2. class Memo {
  3. List<Position> state = [];
  4. }