blob: 4d7971c59a8113ffceeca8d94bf11faa39e16c17 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:image_picker_platform_interface/src/types/image_options.dart';
/// Specifies options for picking multiple images from the device's gallery.
class MultiImagePickerOptions {
/// Creates an instance with the given [imageOptions].
const MultiImagePickerOptions({
this.imageOptions = const ImageOptions(),
});
/// The image-specific options for picking.
final ImageOptions imageOptions;
}