tileTypeBelow method

String? tileTypeBelow()

Method that checks what type map tile is currently

Implementation

String? tileTypeBelow() {
  final list = tileTypeListBelow();
  if (list.isNotEmpty) {
    return list.first;
  }

  return null;
}