ActionErrorTable.fromJson constructor

ActionErrorTable.fromJson(
  1. Map json_
)

Implementation

ActionErrorTable.fromJson(core.Map json_)
  : this(
      retentionDays: json_['retentionDays'] as core.int?,
      target: json_.containsKey('target')
          ? Target.fromJson(
              json_['target'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );