isTrue function

bool isTrue(
  1. bool? value
)

True if the boolean value is true

since 0.0.1

Implementation

bool isTrue(final bool? value) => value == true;