toJson method

Map<String, dynamic> toJson()

Implementation

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