class MissionLocation { final int? index; final double? top; final double? bottom; final double? right; final double? left; const MissionLocation({ this.index, this.top, this.bottom, this.right, this.left, }); }