fromProtobuf static method
Implementation
static UserProtobuf fromProtobuf(MessageProtobuf messageProtobuf) {
return UserProtobuf(
uid: messageProtobuf.user!.uid!,
nickname: messageProtobuf.user!.nickname!,
avatar: messageProtobuf.user!.avatar!,
);
}