formatUserShowArea static method

String formatUserShowArea(
  1. User who
)

格式化用户显示地址

Implementation

static String formatUserShowArea(User who) {
  return '${who.province} ${who.city} ${who.district}';
}