FindReplaceResponse.fromJson constructor

FindReplaceResponse.fromJson(
  1. Map json_
)

Implementation

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