isBuffer function

bool isBuffer(
  1. dynamic value
)

Implementation

bool isBuffer(dynamic value) {
  return value is ByteBuffer;
}