fromJsonStream method

Future<T> fromJsonStream(
  1. Stream<List<int>> json
)

Implementation

Future<T> fromJsonStream(Stream<List<int>> json) async {
  return _fromJsonStream(json);
}