toJson method

Map<String, dynamic> toJson()

Implementation

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