toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'domainInfos': domainInfos.map((e) => e.toJson()).toList(),
    'mobileInfos': mobileInfos.map((e) => e.toJson()).toList(),
    'clientRegistrations': clientRegistrations.map((e) => e.toJson()).toList()
  };
}