ParticlePathPreset.custom constructor

ParticlePathPreset.custom(
  1. Path path, {
  2. double? areaFactor,
})

Creates a preset from a custom Path.

Implementation

factory ParticlePathPreset.custom(
  Path path, {
  double? areaFactor,
}) =>
    ParticlePathPreset(
      path: path,
      areaFactor: areaFactor,
    );