getClipPath method

List<Path>? getClipPath(
  1. String id
)

Get a List<Path> of clip paths by id.

Implementation

List<Path>? getClipPath(String id) {
  assert(id != null); // ignore: unnecessary_null_comparison
  return _clipPaths[id];
}