toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (floatValue != null) 'floatValue': floatValue!,
      if (intValue != null) 'intValue': intValue!,
      if (parameter != null) 'parameter': parameter!,
      if (stringValue != null) 'stringValue': stringValue!,
    };