Type.ofStream constructor

Type.ofStream(
  1. Type type, {
  2. bool nullable = false,
})

Implementation

Type.ofStream(Type type, {this.nullable = false})
    : name = 'Stream',
      generics = [type],
      super();