AdBlockingRecoveryTag.fromJson constructor

AdBlockingRecoveryTag.fromJson(
  1. Map json_
)

Implementation

AdBlockingRecoveryTag.fromJson(core.Map json_)
    : this(
        errorProtectionCode: json_.containsKey('errorProtectionCode')
            ? json_['errorProtectionCode'] as core.String
            : null,
        tag: json_.containsKey('tag') ? json_['tag'] as core.String : null,
      );