readList<T> static method

List<T> readList<T>(
  1. dynamic input, {
  2. String? typeName,
  3. required bool isNullable,
})

Implementation

static List<T> readList<T>(dynamic input, {String? typeName, required bool isNullable}) {
  return _serializer!.readList<T>(input, typeName: typeName, isNullable: isNullable);
}