List<Object?> readList(Object? value) { if (value is! List<Object?>) { throw const FormatException('Expected a list.'); } return value; }