com-dot-app-sancharsaathi-1-5-0.apk

Download file
    package com.dexterous.flutterlocalnotifications.utils;

public class BooleanUtils {
    public static boolean getValue(Boolean bool) {
        return bool != null && bool.booleanValue();
    }
}
    
Download file