toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'scope'] = this.scope;
    json[r'action'] = this.action;
    json[r'target'] = this.target;
  return json;
}