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,
      );