SplitInt64.fromJson constructor

SplitInt64.fromJson(
  1. Map _json
)

Implementation

SplitInt64.fromJson(core.Map _json)
    : this(
        highBits: _json.containsKey('highBits')
            ? _json['highBits'] as core.int
            : null,
        lowBits: _json.containsKey('lowBits')
            ? _json['lowBits'] as core.int
            : null,
      );