Created a Contract class that extends Flunt's Contract<T> to remove the code break caused.
namespace Flunt.Br
{
/// <summary>
/// This class extends the Contract<T> of Flunt Package
/// To avoid breack changes
/// </summary>
public class Contract: Contract<bool>
{
}
}
Created a Contract class that extends Flunt's
Contract<T>
to remove the code break caused.