Bounds.fromPoint constructor

Bounds.fromPoint(
  1. List<double> point
)

Implementation

factory Bounds.fromPoint(List<double> point) {
  final shared = Float64List.fromList(point);
  return Bounds._(shared, shared);
}