CustomTarget.fromJson constructor

CustomTarget.fromJson(
  1. Map json_
)

Implementation

CustomTarget.fromJson(core.Map json_)
    : this(
        customTargetType: json_.containsKey('customTargetType')
            ? json_['customTargetType'] as core.String
            : null,
      );