getLoginSessionsById method

Future<LoginSession?> getLoginSessionsById(
  1. dynamic params
)

Implementation

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