getIssuer method
Gets the name of the IDP that issued this account.
Implementation
String? getIssuer() {
if (this.displayIssuer != "null" &&
this.displayIssuer != null &&
this.displayIssuer!.isNotEmpty) {
return this.displayIssuer;
} else {
return this.issuer;
}
}