getAssemblyNotifications method

Future<TransloaditResponse> getAssemblyNotifications({
  1. Map<String, dynamic>? params,
})

Retrieves a list of recent Assembly Notifications

Implementation

Future<TransloaditResponse> getAssemblyNotifications(
    {Map<String, dynamic>? params}) {
  params = params ?? {};

  String url = '/assembly_notifications';
  return request.httpGet(service: service, assemblyPath: url, params: params);
}