isBigInt function

bool isBigInt(
  1. dynamic value
)

Implementation

bool isBigInt(dynamic value) {
  return value is BigInt;
}