getSettingsByIds method

  1. @override
Future<List<EmailSettingsV1>> getSettingsByIds(
  1. String? correlationId,
  2. List<String> recipientIds
)
override

Gets a list of email settings retrieved by a ids.

  • correlationId (optional) transaction id to trace execution through call chain.
  • recipientIds a recipient ids to get settings Return Future that receives a data list Throws error.

Implementation

@override
Future<List<EmailSettingsV1>> getSettingsByIds(
    String? correlationId, List<String> recipientIds) async {
  return <EmailSettingsV1>[];
}