UserInfo constructor

const UserInfo({
  1. required String uuid,
  2. required String name,
})

Creates a new UserInfo instance.

Both uuid and name are required.

Implementation

const UserInfo({
  required this.uuid,
  required this.name,
});