toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final businessEntityName = this.businessEntityName;
  final displayName = this.displayName;
  final name = this.name;
  final serviceId = this.serviceId;
  return {
    'businessEntityName': ?businessEntityName,
    'displayName': ?displayName,
    'name': ?name,
    'serviceId': ?serviceId,
  };
}