isJsBigInt static method

bool isJsBigInt(
  1. Object o
)

Returns true when the argument is a JavaScript BigInt value.

Implementation

static bool isJsBigInt(Object o) =>
    getProperty(getProperty(o, 'constructor') as Object, 'name') == 'BigInt';