AdSize.fromJson constructor

AdSize.fromJson(
  1. Map json_
)

Implementation

AdSize.fromJson(core.Map json_)
  : this(
      height: json_['height'] as core.String?,
      type: json_['type'] as core.String?,
      width: json_['width'] as core.String?,
    );