setCustomSignatureIntroImage function
Implementation
Future<bool?> setCustomSignatureIntroImage(String imagePath) async {
try {
final res = await _platform.setCustomSignatureIntroImage(imagePath);
return res;
} catch (error, stackTrace) {
Error.throwWithStackTrace(error, stackTrace);
}
}