getMemberInfoByUserId static method
Implementation
static Future<TCICGetMemberInfoResult?> getMemberInfoByUserId(GetMemberInfoBody body) async {
var data = await HttpClient.post<TCICGetMemberInfoResult, GetMemberInfoBody>(
api: "/v1/member/memberInfo",
body: body,
fromJson: TCICGetMemberInfoResult.fromJson,
);
TCICLog.info('HTTP getMemberInfo ${data?.toJson()}',actionModule: ActionModule.memberService.name,actionName: ActionName.getMemberList.name);
return data;
}