decode static method

CoordinateBounds decode(
  1. Object result
)

Implementation

static CoordinateBounds decode(Object result) {
  result as List<Object?>;
  return CoordinateBounds(
    southwest: result[0]! as Point,
    northeast: result[1]! as Point,
    infiniteBounds: result[2]! as bool,
  );
}