FFNodeFeaturePresence constructor

FFNodeFeaturePresence({
  1. bool? hasTextShadows,
})

Implementation

factory FFNodeFeaturePresence({
  $core.bool? hasTextShadows,
}) {
  final result = create();
  if (hasTextShadows != null) result.hasTextShadows = hasTextShadows;
  return result;
}