PromotionImage.fromJson constructor

PromotionImage.fromJson(
  1. Map json_
)

Implementation

PromotionImage.fromJson(core.Map json_)
    : this(
        height: json_['height'] as core.int?,
        source: json_['source'] as core.String?,
        width: json_['width'] as core.int?,
      );