isSupportedIdentity function
Return whether type of identity
is supported or not
Implementation
bool isSupportedIdentity(dynamic identity) {
return identity is String || identity is Map<String, dynamic>;
}
Return whether type of identity
is supported or not
bool isSupportedIdentity(dynamic identity) {
return identity is String || identity is Map<String, dynamic>;
}