existStrict property

Future<bool> get existStrict

Check if value exists after generate

Implementation

Future<bool> get existStrict async {
  try {
    return await value != null;
  } catch (_) {
    return false;
  }
}