tilePropertiesBelow method

Map<String, dynamic>? tilePropertiesBelow()

Method that checks what properties map tile is currently

Implementation

Map<String, dynamic>? tilePropertiesBelow() {
  final list = tilePropertiesListBelow();
  if (list?.isNotEmpty == true) {
    return list?.first;
  }

  return null;
}