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