ResendProvider constructor

const ResendProvider({
  1. required String apiKey,
  2. required String fromEmail,
})

Creates a Resend email provider.

Implementation

const ResendProvider({required String apiKey, required String fromEmail})
  : _apiKey = apiKey,
    _fromEmail = fromEmail;