decode static method

MapContentGestureContext decode(
  1. Object result
)

Implementation

static MapContentGestureContext decode(Object result) {
  result as List<Object?>;
  return MapContentGestureContext(
    touchPosition: ScreenCoordinate.decode(result[0]! as List<Object?>),
    point: Point.decode(result[1]! as List<Object?>),
  );
}