InputDataChange.fromJson constructor

InputDataChange.fromJson(
  1. Map json_
)

Implementation

InputDataChange.fromJson(core.Map json_)
    : this(
        recordsReadDiffPercentage:
            json_.containsKey('recordsReadDiffPercentage')
                ? (json_['recordsReadDiffPercentage'] as core.num).toDouble()
                : null,
      );