getSelfInfo static method

Future<TCICUserInfoRepModel?> getSelfInfo()

Implementation

static Future<TCICUserInfoRepModel?> getSelfInfo() async {
  var data = await HttpClient.post<TCICUserInfoRepModel, GetSelfInfoBody>(api: "/v1/user/info",body: GetSelfInfoBody(), fromJson: TCICUserInfoRepModel.fromJson);
  TCICLog.info('HTTP getSelfInfo ${data?.toJson()}',actionModule: ActionModule.memberService.name,actionName: ActionName.getSelfInfo.name);
  return data;
}