fromJson static method
Implementation
static Friend fromJson(dynamic json) {
return Friend(
uid: json['uid'],
username: json['username'],
nickname: json['nickname'],
avatar: json['avatar'],
description: json['description'],
mobile: json['mobile']);
}