decode static method
Implementation
static FlutterSyncingInterval decode(Object result) {
result as List<Object?>;
return FlutterSyncingInterval(
type: result[0]! as FlutterSyncingIntervalType,
intervalMilliseconds: result[1] as int?,
);
}