random method

Future<Buffer> random (int count)

Implementation

static Future<Buffer> random(int count) async {
  var bytes = await invokeCommon('buffer.random', [count]);
  return Buffer.fromBytes(bytes);
}