nullableStringToBool static method

bool? nullableStringToBool(
  1. String? value
)

Implementation

static bool? nullableStringToBool(String? value) =>
    value != null ? stringToBool(value) : null;