GoogleAdsSearchads360V23CommonValue.fromJson constructor

GoogleAdsSearchads360V23CommonValue.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonValue.fromJson(core.Map json_)
  : this(
      booleanValue: json_['booleanValue'] as core.bool?,
      doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
      floatValue: (json_['floatValue'] as core.num?)?.toDouble(),
      int64Value: json_['int64Value'] as core.String?,
      stringValue: json_['stringValue'] as core.String?,
    );