InputStream constructor

InputStream(
  1. List<int> data
)

Implementation

InputStream(List<int> data) {
  this.data = data;
}