isBn function

bool isBn(
  1. dynamic value
)

Implementation

bool isBn(dynamic value) {
  return isBigInt(value);
}