ResponseStatusCode.fromJson constructor
ResponseStatusCode.fromJson(
- Map json_
Implementation
ResponseStatusCode.fromJson(core.Map json_)
: this(
statusClass: json_.containsKey('statusClass')
? json_['statusClass'] as core.String
: null,
statusValue: json_.containsKey('statusValue')
? json_['statusValue'] as core.int
: null,
);