Skip to content

Instantly share code, notes, and snippets.

@FlutterWiz
Created January 7, 2023 15:49
Show Gist options
  • Save FlutterWiz/410d4f52fd7123206e765c54b31ff4dd to your computer and use it in GitHub Desktop.
Save FlutterWiz/410d4f52fd7123206e765c54b31ff4dd to your computer and use it in GitHub Desktop.
extension GetstreamUserDomainX on OwnUser {
ChatUserModel toDomain() {
return ChatUserModel(
createdAt: formatDate(createdAt, [yyyy, '-', mm, '-', dd]),
userRole: role?.toUpperCase() ?? "?",
isUserBanned: banned,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment