toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  "clientId": clientId == null ? null : clientId,
  "subscriptionId": subscriptionId == null ? null : subscriptionId,
  "createdAt": createdAt == null ? null : createdAt.toIso8601String(),
};