toJson method

Map<String, dynamic> toJson()

Implementation

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