profile method

Future<StreamUser> profile({
  1. bool withFollowCounts = true,
})

Get the user profile, it includes the follow counts by default

Implementation

Future<StreamUser> profile({bool withFollowCounts = true}) =>
    get(withFollowCounts: withFollowCounts);