FFExpandImageAction constructor
Implementation
factory FFExpandImageAction({
$core.bool? allowRotation,
$core.bool? heroAnimation,
}) {
final result = create();
if (allowRotation != null) result.allowRotation = allowRotation;
if (heroAnimation != null) result.heroAnimation = heroAnimation;
return result;
}