Skip to content

Instantly share code, notes, and snippets.

@ookami-kb
Created June 15, 2020 18:43
Show Gist options
  • Select an option

  • Save ookami-kb/d847741b7eecc4b4e28a2979997245ae to your computer and use it in GitHub Desktop.

Select an option

Save ookami-kb/d847741b7eecc4b4e28a2979997245ae to your computer and use it in GitHub Desktop.
abstract class Floor implements Built<Floor, FloorBuilder> {
factory Floor([Function(FloorBuilder b) updates]) =>
_$Floor((b) => b..update(updates));
Floor._();
String get floorNumber;
BuiltList<Space> get spaces;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment