toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  if (livekit != null) 'livekit': livekit!.toJson(),
  if (queues != null) 'queues': queues!.toJson(),
  if (messaging != null) 'messaging': messaging!.toJson(),
  if (database != null) 'database': database!.toJson(),
  if (sync != null) 'sync': sync!.toJson(),
  if (storage != null) 'storage': storage!.toJson(),
  if (containers != null) 'containers': containers!.toJson(),
  if (developer != null) 'developer': developer!.toJson(),
  if (agents != null) 'agents': agents!.toJson(),
  if (admin != null) 'admin': admin!.toJson(),
  if (secrets != null) 'secrets': secrets!.toJson(),
};