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