signUpWithPassword method

Future<PasswordSignInResponse> signUpWithPassword(
  1. PasswordSignInRequest request
)

Implementation

Future<PasswordSignInResponse> signUpWithPassword(
  PasswordSignInRequest request,
) async =>
    PasswordSignInResponse.fromJson(
      await _post(
        _buildUri('accounts:signUp'),
        request.toJson(),
      ),
    );