isLeft property

Future<bool> isLeft

Represents the left side of Either class which by convention is a "Failure".

Implementation

Future<bool> get isLeft => this.then((either) => either.isLeft);