DownloadRestriction.fromJson constructor

DownloadRestriction.fromJson(
  1. Map json_
)

Implementation

DownloadRestriction.fromJson(core.Map json_)
    : this(
        restrictedForReaders: json_['restrictedForReaders'] as core.bool?,
        restrictedForWriters: json_['restrictedForWriters'] as core.bool?,
      );