com-dot-app-sancharsaathi-1-5-0.apk
Download file
package com.dexterous.flutterlocalnotifications.models.styles;
import com.dexterous.flutterlocalnotifications.models.BitmapSource;
public class BigPictureStyleInformation extends DefaultStyleInformation {
public Object bigPicture;
public BitmapSource bigPictureBitmapSource;
public String contentTitle;
public Boolean hideExpandedLargeIcon;
public Boolean htmlFormatContentTitle;
public Boolean htmlFormatSummaryText;
public Object largeIcon;
public BitmapSource largeIconBitmapSource;
public String summaryText;
public BigPictureStyleInformation(Boolean bool, Boolean bool2, String str, Boolean bool3, String str2, Boolean bool4, Object obj, BitmapSource bitmapSource, Object obj2, BitmapSource bitmapSource2, Boolean bool5) {
super(bool, bool2);
this.contentTitle = str;
this.htmlFormatContentTitle = bool3;
this.summaryText = str2;
this.htmlFormatSummaryText = bool4;
this.largeIcon = obj;
this.largeIconBitmapSource = bitmapSource;
this.bigPicture = obj2;
this.bigPictureBitmapSource = bitmapSource2;
this.hideExpandedLargeIcon = bool5;
}
}
Download file