signInRequest static method
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;
}
}