ResponseStatusCode.fromJson constructor

ResponseStatusCode.fromJson(
  1. 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,
      );