toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (logSource != null) 'logSource': logSource!,
      if (policyOverlay != null)
        'policyOverlay': policyOverlay!
            .map((key, item) => core.MapEntry(key, item.toJson())),
    };