DiffVersionResponse.fromJson constructor

DiffVersionResponse.fromJson(
  1. Map _json
)

Implementation

DiffVersionResponse.fromJson(core.Map _json)
    : this(
        objectSizeBytes: _json.containsKey('objectSizeBytes')
            ? _json['objectSizeBytes'] as core.String
            : null,
        objectVersion: _json.containsKey('objectVersion')
            ? _json['objectVersion'] as core.String
            : null,
      );