toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final debugString = this.debugString;
  final errorCode = this.errorCode;
  final maxAge = this.maxAge;
  final statements = this.statements;
  return {
    'debugString': ?debugString,
    'errorCode': ?errorCode,
    'maxAge': ?maxAge,
    'statements': ?statements,
  };
}