decode static method
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,
);
}