toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (customer != null) 'customer': customer!,
  if (displayName != null) 'displayName': displayName!,
  if (idpConfig != null) 'idpConfig': idpConfig!,
  if (name != null) 'name': name!,
  if (rpConfig != null) 'rpConfig': rpConfig!,
};