package com.dexterous.flutterlocalnotifications.utils; public class BooleanUtils { public static boolean getValue(Boolean bool) { return bool != null && bool.booleanValue(); } }