$GenderTargetingOptionDetails.fromJson constructor

$GenderTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

$GenderTargetingOptionDetails.fromJson(core.Map json_)
    : this(
        gender: json_.containsKey('gender')
            ? json_['gender'] as core.String
            : null,
      );