StreamFetchInvalidationsRequest.fromJson constructor

StreamFetchInvalidationsRequest.fromJson(
  1. Map _json
)

Implementation

StreamFetchInvalidationsRequest.fromJson(core.Map _json)
    : this(
        lastKnownVersionNumber: _json.containsKey('lastKnownVersionNumber')
            ? _json['lastKnownVersionNumber'] as core.String
            : null,
      );