PromotionPromotionStatusPromotionIssue.fromJson constructor

PromotionPromotionStatusPromotionIssue.fromJson(
  1. Map json_
)

Implementation

PromotionPromotionStatusPromotionIssue.fromJson(core.Map json_)
    : this(
        code: json_.containsKey('code') ? json_['code'] as core.String : null,
        detail: json_.containsKey('detail')
            ? json_['detail'] as core.String
            : null,
      );