signUpRequest static method
Implementation
static Future<dynamic> signUpRequest(String sourceService, String username,
String userId, String companyId, String type) async {
try {
final result = await _channel.invokeMethod('signUpRequest', {
'sourceService': sourceService,
'username': username,
'userId': userId,
'companyId': companyId,
'type': type
});
final signUpObject = json.decode(result);
return signUpObject;
} on PlatformException catch (exception) {
return exception;
}
}