gptTranslateLegal method

Future<LegalInfo?> gptTranslateLegal(
  1. dynamic params
)

Implementation

Future<LegalInfo?> gptTranslateLegal(params) async {
  NetworkResponse response = await _api.gptTranslateLegal(params);
  return response.data;
}