getProfileImageInternal method

Future<MesiboProfileImage>? getProfileImageInternal(
  1. int hash,
  2. int index,
  3. int next
)

Implementation

}Future<MesiboProfileImage>? getProfileImageInternal(int hash,int index,int next) async{index= await super.getProfileImage(hash,index,next) as int;if(index<0)return Future<MesiboProfileImage>.value(null);MesiboProfileImage pi= MesiboProfileImage(hash,index);return Future<MesiboProfileImage>.value(pi);}