FindReplaceResponse.fromJson constructor

FindReplaceResponse.fromJson(
  1. Map json_
)

Implementation

FindReplaceResponse.fromJson(core.Map json_)
    : this(
        formulasChanged: json_.containsKey('formulasChanged')
            ? json_['formulasChanged'] as core.int
            : null,
        occurrencesChanged: json_.containsKey('occurrencesChanged')
            ? json_['occurrencesChanged'] as core.int
            : null,
        rowsChanged: json_.containsKey('rowsChanged')
            ? json_['rowsChanged'] as core.int
            : null,
        sheetsChanged: json_.containsKey('sheetsChanged')
            ? json_['sheetsChanged'] as core.int
            : null,
        valuesChanged: json_.containsKey('valuesChanged')
            ? json_['valuesChanged'] as core.int
            : null,
      );