toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowedFunctionNames = this.allowedFunctionNames;
  final mode = this.mode;
  final streamFunctionCallArguments = this.streamFunctionCallArguments;
  return {
    'allowedFunctionNames': ?allowedFunctionNames,
    'mode': ?mode,
    'streamFunctionCallArguments': ?streamFunctionCallArguments,
  };
}