decode static method

MapAnimationOptions decode(
  1. Object result
)

Implementation

static MapAnimationOptions decode(Object result) {
  result as List<Object?>;
  return MapAnimationOptions(
    duration: result[0] as int?,
    startDelay: result[1] as int?,
  );
}