FFAndroidAdaptiveIcon constructor
FFAndroidAdaptiveIcon({})
Implementation
factory FFAndroidAdaptiveIcon({
$core.String? foregroundImagePath,
$core.String? backgroundImagePath,
FFColor? backgroundColor,
}) {
final result = create();
if (foregroundImagePath != null)
result.foregroundImagePath = foregroundImagePath;
if (backgroundImagePath != null)
result.backgroundImagePath = backgroundImagePath;
if (backgroundColor != null) result.backgroundColor = backgroundColor;
return result;
}