TimeBasedRetention.fromJson constructor

TimeBasedRetention.fromJson(
  1. Map json_
)

Implementation

TimeBasedRetention.fromJson(core.Map json_)
    : this(
        retentionPeriod: json_.containsKey('retentionPeriod')
            ? json_['retentionPeriod'] as core.String
            : null,
      );