extension StringNullableExtensions on String? { bool toBoolean() { if (this == null) return false; return this!.toLowerCase() == 'true'; } } extension StringExtensions on String { bool toBoolean() { return this.toLowerCase() == 'true'; } }