toJson method

Map<String, dynamic> toJson()

Implementation

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