PolicyDriftDetails.fromJson constructor

PolicyDriftDetails.fromJson(
  1. Map json_
)

Implementation

PolicyDriftDetails.fromJson(core.Map json_)
    : this(
        detectedValue: json_.containsKey('detectedValue')
            ? json_['detectedValue'] as core.String
            : null,
        expectedValue: json_.containsKey('expectedValue')
            ? json_['expectedValue'] as core.String
            : null,
        field:
            json_.containsKey('field') ? json_['field'] as core.String : null,
      );