setCustomSignatureIntroImage function

Future<bool?> setCustomSignatureIntroImage(
  1. String imagePath
)

Implementation

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