showName method
Implementation
String showName() {
if (info?.nickname?.isNotEmpty == true) {
return info!.nickname!;
} else {
return userId;
}
}
String showName() {
if (info?.nickname?.isNotEmpty == true) {
return info!.nickname!;
} else {
return userId;
}
}