TrimWhitespaceResponse.fromJson constructor

TrimWhitespaceResponse.fromJson(
  1. Map json_
)

Implementation

TrimWhitespaceResponse.fromJson(core.Map json_)
    : this(
        cellsChangedCount: json_.containsKey('cellsChangedCount')
            ? json_['cellsChangedCount'] as core.int
            : null,
      );