toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final policyNamespace = this.policyNamespace;
  final policySchema = this.policySchema;
  final policyTargetKey = this.policyTargetKey;
  return {
    'policyNamespace': ?policyNamespace,
    'policySchema': ?policySchema,
    'policyTargetKey': ?policyTargetKey,
  };
}