FFToggleExpandableWidgetAction constructor

FFToggleExpandableWidgetAction({
  1. Iterable<FFNodeKeyPath>? nodeKeyPaths,
})

Implementation

factory FFToggleExpandableWidgetAction({
  $core.Iterable<FFNodeKeyPath>? nodeKeyPaths,
}) {
  final result = create();
  if (nodeKeyPaths != null) result.nodeKeyPaths.addAll(nodeKeyPaths);
  return result;
}