toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final excludePathList = this.excludePathList;
  final pathList = this.pathList;
  final recursion = this.recursion;
  return {
    'excludePathList': ?excludePathList,
    'pathList': ?pathList,
    'recursion': ?recursion,
  };
}