decode static method

FlutterSyncingInterval decode(
  1. Object result
)

Implementation

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