signUpRequest static method

Future signUpRequest(
  1. String sourceService,
  2. String username,
  3. String userId,
  4. String companyId,
  5. String type,
)

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;
  }
}