unlinkProvider method

Future<UnlinkResponse> unlinkProvider(
  1. UnlinkRequest request
)

Implementation

Future<UnlinkResponse> unlinkProvider(UnlinkRequest request) async =>
    UnlinkResponse.fromJson(
      await _post(
        _buildUri('accounts:update'),
        request.toJson(),
      ),
    );