NearbyMessageFilesResponse.fromJson constructor

NearbyMessageFilesResponse.fromJson(
  1. Map<String, dynamic>? json
)

Implementation

factory NearbyMessageFilesResponse.fromJson(Map<String, dynamic>? json) {
  return NearbyMessageFilesResponse(
    id: json?['id'] ?? '',
    isAccepted: json?['isAccepted'] ?? false,
  );
}