dumpMemberDataOld static method
Implementation
static Future<void> dumpMemberDataOld(String? appId, String? subject,
String? from, List<MemberCollectionInfo> memberCollectionInfo) async {
var dumpMemberData =
FirebaseFunctions.instance.httpsCallable('dumpMemberData');
await dumpMemberData.call(<String, dynamic>{
'appId': appId,
'subject': subject,
'from': from,
'collections': _toFunctionFormat(memberCollectionInfo)
});
}