CheckConsistencyResponse.fromJson constructor
CheckConsistencyResponse.fromJson(
- Map json_
Implementation
CheckConsistencyResponse.fromJson(core.Map json_)
: this(
consistent: json_.containsKey('consistent')
? json_['consistent'] as core.bool
: null,
);