launch method

  1. @override
Future<CommunicationResponse> launch([
  1. Email? input
])
override

Launches this app, and returns the appropriate launch response

Implementation

@override
Future<CommunicationResponse> launch([Email? input]) async {
  final gmailResponse = await gmailProvider.launch(input);
  return CommunicationResponse.ofLinkOpen(gmailResponse);
}