UserInfoResponse constructor

UserInfoResponse({
  1. Map<String, Object> custom = const {},
  2. required String image,
  3. required String name,
  4. List<String> roles = const [],
})

Returns a new UserInfoResponse instance.

Implementation

UserInfoResponse({
  this.custom = const {},
  required this.image,
  required this.name,
  this.roles = const [],
});