composeLaunchScheme method

String? composeLaunchScheme(
  1. EmailContent content
)

Implementation

String? composeLaunchScheme(EmailContent content) {
  if (OpenMailApp._isAndroid) {
    return content.toJson();
  } else if (OpenMailApp._isIOS) {
    return this.composeData!.getComposeLaunchSchemeForIos(content);
  } else {
    throw Exception('Platform not supported');
  }
}