showName method

String showName()

Implementation

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