toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final enable = this.enable;
  final expression = this.expression;
  final outputCredentials = this.outputCredentials;
  return {
    'enable': ?enable,
    'expression': ?expression,
    'outputCredentials': ?outputCredentials,
  };
}