toJson method

Map<String, dynamic> toJson()

Implementation

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