import 'package:gobang/models/position.dart'; class Memo { final List state; Memo([List? state]) : state = List.of(state ?? const []); }