getProInfoByUniqueId method

Future<ProInfo?> getProInfoByUniqueId(
  1. dynamic uniqueId
)

Implementation

Future<ProInfo?> getProInfoByUniqueId(uniqueId) async {
  NetworkResponse response = await _api.getProInfoByUniqueId(uniqueId);
  return response.data;
}