chooseAssetName method
Implementation
String chooseAssetName() {
if( assetAspectRatio != null ) {
isAssestFound = true;
isModeAspectRatio = true;
return assetAspectRatio!.assetName;
} else if ( assetBackground != null ){
isAssestFound = true;
isModeBackground = true;
return assetBackground!.assetName;
} else {
isAssestFound = false;
return "";
}
}