ForwardingRuleReference.fromJson constructor

ForwardingRuleReference.fromJson(
  1. Map json_
)

Implementation

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