resend method

Future<ResendResponse> resend(
  1. ResendRequest request
)

Отправляет все неотправленные нотификации

Implementation

Future<ResendResponse> resend(ResendRequest request) {
  return _network(
    request,
    (Map<String, dynamic> json) => ResendResponse.fromJson(json),
  );
}