getUserCommand static method

Future<TCICCommandRepModel?> getUserCommand(
  1. CommandBody body
)

Implementation

static Future<TCICCommandRepModel?> getUserCommand(CommandBody body) async {
  var data = await HttpClient.post<TCICCommandRepModel, CommandBody>(
    api: "/v1/member/getUserCommand",
    body: body,
    fromJson: TCICCommandRepModel.fromJson,
  );

  return data;
}