ContactInfo.from constructor

ContactInfo.from(
  1. UserInfo item
)

Implementation

factory ContactInfo.from(UserInfo item) {
  return ContactInfo(item.id, DateTime.now().toUtc(), false, 0);
}