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,
      );