isTrue function

bool isTrue(
  1. bool? value
)

Returns true if the boolean value is true

since 0.0.1

Implementation

bool isTrue(bool? value) => value.isTrue;