tilePropertiesBelow method

Map<String, dynamic>? tilePropertiesBelow()

Returns the properties of the first map tile below the component.

Implementation

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