CustomBiddingAlgorithmRulesError.fromJson constructor

CustomBiddingAlgorithmRulesError.fromJson(
  1. Map json_
)

Implementation

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