Uint128.fromJson constructor

Uint128.fromJson(
  1. Map json_
)

Implementation

Uint128.fromJson(core.Map json_)
    : this(
        high: json_.containsKey('high') ? json_['high'] as core.String : null,
        low: json_.containsKey('low') ? json_['low'] as core.String : null,
      );