Global.i64 constructor

Global.i64({
  1. BigInt? value,
  2. bool mutable = false,
})

Creates a Global of 64-bit integer type with value.

Implementation

Global.i64({BigInt? value, bool mutable = false})
    : jsObject =
          _Global(_descriptor('i64', mutable), (value ?? BigInt.zero).toJs());