toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (contacts != null) 'contacts': contacts!,
  if (readMask != null) 'readMask': readMask!,
  if (sources != null) 'sources': sources!,
  if (updateMask != null) 'updateMask': updateMask!,
};