clone method

  1. @override
FeatureCollection<T> clone()
override

Implementation

@override
FeatureCollection<T> clone() => FeatureCollection(
      features: features.map((e) => e.clone()).toList(),
      bbox: bbox?.clone(),
    );