WangSet constructor

WangSet({
  1. required String name,
  2. required int tile,
  3. List<WangColor> cornerColors = const [],
  4. List<WangColor> edgeColors = const [],
  5. List<WangTile> wangTiles = const [],
  6. CustomProperties properties = CustomProperties.empty,
})

Implementation

WangSet({
  required this.name,
  required this.tile,
  this.cornerColors = const [],
  this.edgeColors = const [],
  this.wangTiles = const [],
  this.properties = CustomProperties.empty,
});