worldUnits property

bool? get worldUnits

Implementation

bool? get worldUnits => defines?.containsKey('WORLD_UNITS');
set worldUnits (bool? value)

Implementation

set worldUnits(bool? value ) {
	if ( value == true ) {
		defines?['WORLD_UNITS'] = '';
	}
    else {
		defines?.remove('WORLD_UNITS');
	}
}