RowDimensions.fromJson constructor

RowDimensions.fromJson(
  1. Map _json
)

Implementation

RowDimensions.fromJson(core.Map _json)
    : this(
        publisherIdentifier: _json.containsKey('publisherIdentifier')
            ? _json['publisherIdentifier'] as core.String
            : null,
        timeInterval: _json.containsKey('timeInterval')
            ? TimeInterval.fromJson(
                _json['timeInterval'] as core.Map<core.String, core.dynamic>)
            : null,
      );