random method

List random(
  1. List shape, {
  2. int start = 0,
  3. int end = 100,
  4. String? dtype = 'int',
})

Implementation

List random(List shape,
        {int start = 0, int end = 100, String? dtype = 'int'}) =>
    DartTensor().random.random(shape, start: start, end: end, dtype: dtype);