copyWith method

Gid copyWith({
  1. int? tile,
  2. Flips? flips,
})

Implementation

Gid copyWith({
  int? tile,
  Flips? flips,
}) {
  return Gid(
    tile ?? this.tile,
    flips ?? this.flips,
  );
}