toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (boolArrayValue != null) 'boolArrayValue': boolArrayValue!,
  if (boolValue != null) 'boolValue': boolValue!,
  if (bytesValue != null) 'bytesValue': bytesValue!,
  if (doubleArrayValue != null) 'doubleArrayValue': doubleArrayValue!,
  if (doubleValue != null) 'doubleValue': doubleValue!,
  if (int64ArrayValue != null) 'int64ArrayValue': int64ArrayValue!,
  if (int64Value != null) 'int64Value': int64Value!,
  if (metadata != null) 'metadata': metadata!,
  if (stringArrayValue != null) 'stringArrayValue': stringArrayValue!,
  if (stringValue != null) 'stringValue': stringValue!,
  if (structValue != null) 'structValue': structValue!,
};