isU8a function

bool isU8a(
  1. dynamic value
)

Implementation

bool isU8a(dynamic value) {
  return value is Uint8List;
}