TriggerBackupRequest.fromJson constructor
TriggerBackupRequest.fromJson(
- Map json_
Implementation
TriggerBackupRequest.fromJson(core.Map json_)
: this(
customRetentionDays: json_['customRetentionDays'] as core.int?,
labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(key, value as core.String),
),
requestId: json_['requestId'] as core.String?,
ruleId: json_['ruleId'] as core.String?,
);