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

Download file
    package com.dexterous.flutterlocalnotifications.models;

import java.io.Serializable;

public class MessageDetails implements Serializable {
    public String dataMimeType;
    public String dataUri;
    public PersonDetails person;
    public String text;
    public Long timestamp;

    public MessageDetails(String str, Long l4, PersonDetails personDetails, String str2, String str3) {
        this.text = str;
        this.timestamp = l4;
        this.person = personDetails;
        this.dataMimeType = str2;
        this.dataUri = str3;
    }
}
    
Download file