2023-09-07 16:51:22 +00:00
|
|
|
// Autogenerated from Pigeon (v11.0.1), do not edit directly.
|
|
|
|
// See also: https://pub.dev/packages/pigeon
|
|
|
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
|
|
|
|
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:typed_data' show Float64List, Int32List, Int64List, Uint8List;
|
|
|
|
|
|
|
|
import 'package:flutter/foundation.dart' show ReadBuffer, WriteBuffer;
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
|
|
|
|
enum FilePickerType {
|
|
|
|
/// Pick only image(s)
|
|
|
|
image,
|
2023-09-08 13:41:06 +00:00
|
|
|
|
2023-09-07 16:51:22 +00:00
|
|
|
/// Pick only video(s)
|
|
|
|
video,
|
2023-09-08 13:41:06 +00:00
|
|
|
|
2023-09-07 16:51:22 +00:00
|
|
|
/// Pick image(s) and video(s)
|
|
|
|
imageAndVideo,
|
2023-09-08 13:41:06 +00:00
|
|
|
|
2023-09-07 16:51:22 +00:00
|
|
|
/// Pick any kind of file(s)
|
|
|
|
generic,
|
|
|
|
}
|
|
|
|
|
|
|
|
class MoxxyPickerApi {
|
|
|
|
/// Constructor for [MoxxyPickerApi]. The [binaryMessenger] named argument is
|
|
|
|
/// available for dependency injection. If it is left null, the default
|
|
|
|
/// BinaryMessenger will be used which routes to the host platform.
|
|
|
|
MoxxyPickerApi({BinaryMessenger? binaryMessenger})
|
|
|
|
: _binaryMessenger = binaryMessenger;
|
|
|
|
final BinaryMessenger? _binaryMessenger;
|
|
|
|
|
|
|
|
static const MessageCodec<Object?> codec = StandardMessageCodec();
|
|
|
|
|
|
|
|
/// Open either the photo picker or the generic file picker to get a list of paths that were
|
|
|
|
/// selected and are accessable. If the list is empty, then the user dismissed the picker without
|
|
|
|
/// selecting anything.
|
|
|
|
///
|
|
|
|
/// [type] specifies what kind of file(s) should be picked.
|
|
|
|
///
|
|
|
|
/// [multiple] controls whether multiple files can be picked (true) or just a single file
|
|
|
|
/// is enough (false).
|
2023-09-08 13:41:06 +00:00
|
|
|
Future<List<String?>> pickFiles(
|
|
|
|
FilePickerType arg_type, bool arg_multiple) async {
|
2023-09-07 16:51:22 +00:00
|
|
|
final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
|
|
|
|
'dev.flutter.pigeon.moxxy_native.MoxxyPickerApi.pickFiles', codec,
|
|
|
|
binaryMessenger: _binaryMessenger);
|
2023-09-08 13:41:06 +00:00
|
|
|
final List<Object?>? replyList = await channel
|
|
|
|
.send(<Object?>[arg_type.index, arg_multiple]) as List<Object?>?;
|
2023-09-07 16:51:22 +00:00
|
|
|
if (replyList == null) {
|
|
|
|
throw PlatformException(
|
|
|
|
code: 'channel-error',
|
|
|
|
message: 'Unable to establish connection on channel.',
|
|
|
|
);
|
|
|
|
} else if (replyList.length > 1) {
|
|
|
|
throw PlatformException(
|
|
|
|
code: replyList[0]! as String,
|
|
|
|
message: replyList[1] as String?,
|
|
|
|
details: replyList[2],
|
|
|
|
);
|
|
|
|
} else if (replyList[0] == null) {
|
|
|
|
throw PlatformException(
|
|
|
|
code: 'null-error',
|
|
|
|
message: 'Host platform returned null value for non-null return value.',
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (replyList[0] as List<Object?>?)!.cast<String?>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Like [pickFiles] but sets multiple to false and returns the raw binary data from the file.
|
|
|
|
Future<Uint8List?> pickFileWithData(FilePickerType arg_type) async {
|
|
|
|
final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
|
2023-09-08 13:41:06 +00:00
|
|
|
'dev.flutter.pigeon.moxxy_native.MoxxyPickerApi.pickFileWithData',
|
|
|
|
codec,
|
2023-09-07 16:51:22 +00:00
|
|
|
binaryMessenger: _binaryMessenger);
|
|
|
|
final List<Object?>? replyList =
|
|
|
|
await channel.send(<Object?>[arg_type.index]) as List<Object?>?;
|
|
|
|
if (replyList == null) {
|
|
|
|
throw PlatformException(
|
|
|
|
code: 'channel-error',
|
|
|
|
message: 'Unable to establish connection on channel.',
|
|
|
|
);
|
|
|
|
} else if (replyList.length > 1) {
|
|
|
|
throw PlatformException(
|
|
|
|
code: replyList[0]! as String,
|
|
|
|
message: replyList[1] as String?,
|
|
|
|
details: replyList[2],
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (replyList[0] as Uint8List?);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|