signInRequest static method

Future signInRequest(
  1. String userId,
  2. String companyId,
  3. String sourceService
)

Implementation

static Future<dynamic> signInRequest(
    String userId, String companyId, String sourceService) async {
  try {
    final result = await _channel.invokeMethod('signInRequest', {
      'companyId': companyId,
      'sourceService': sourceService,
    });

    final signInObject = json.decode(result);

    return signInObject;
  } on PlatformException catch (exception) {
    return exception;
  }
}