MessageReadStatus constructor

MessageReadStatus({
  1. int? time,
  2. bool? read,
})

Implementation

MessageReadStatus({
		int? time,
		bool? read
	}) : time = time ?? null,
	read = read ?? false;