FFExpandImageAction constructor

FFExpandImageAction({
  1. bool? allowRotation,
  2. bool? heroAnimation,
})

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;
}