blob: 3f2d78ef9ed5a24e4350d7abe7c83543b25a3b7a [file] [log] [blame]
// Autogenerated from Pigeon (v0.1.19), 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
// @dart = 2.12
import 'dart:async';
import 'dart:typed_data' show Uint8List, Int32List, Int64List, Float64List;
import 'package:flutter/services.dart';
class TextureMessage {
int? textureId;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['textureId'] = textureId;
return pigeonMap;
}
static TextureMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return TextureMessage()..textureId = pigeonMap['textureId'] as int;
}
}
class CreateMessage {
String? asset;
String? uri;
String? packageName;
String? formatHint;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['asset'] = asset;
pigeonMap['uri'] = uri;
pigeonMap['packageName'] = packageName;
pigeonMap['formatHint'] = formatHint;
return pigeonMap;
}
static CreateMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return CreateMessage()
..asset = pigeonMap['asset'] as String
..uri = pigeonMap['uri'] as String
..packageName = pigeonMap['packageName'] as String
..formatHint = pigeonMap['formatHint'] as String;
}
}
class LoopingMessage {
int? textureId;
bool? isLooping;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['textureId'] = textureId;
pigeonMap['isLooping'] = isLooping;
return pigeonMap;
}
static LoopingMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return LoopingMessage()
..textureId = pigeonMap['textureId'] as int
..isLooping = pigeonMap['isLooping'] as bool;
}
}
class VolumeMessage {
int? textureId;
double? volume;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['textureId'] = textureId;
pigeonMap['volume'] = volume;
return pigeonMap;
}
static VolumeMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return VolumeMessage()
..textureId = pigeonMap['textureId'] as int
..volume = pigeonMap['volume'] as double;
}
}
class PlaybackSpeedMessage {
int? textureId;
double? speed;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['textureId'] = textureId;
pigeonMap['speed'] = speed;
return pigeonMap;
}
static PlaybackSpeedMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return PlaybackSpeedMessage()
..textureId = pigeonMap['textureId'] as int
..speed = pigeonMap['speed'] as double;
}
}
class PositionMessage {
int? textureId;
int? position;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['textureId'] = textureId;
pigeonMap['position'] = position;
return pigeonMap;
}
static PositionMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return PositionMessage()
..textureId = pigeonMap['textureId'] as int
..position = pigeonMap['position'] as int;
}
}
class MixWithOthersMessage {
bool? mixWithOthers;
Object encode() {
final Map<Object?, Object?> pigeonMap = <Object?, Object?>{};
pigeonMap['mixWithOthers'] = mixWithOthers;
return pigeonMap;
}
static MixWithOthersMessage decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return MixWithOthersMessage()
..mixWithOthers = pigeonMap['mixWithOthers'] as bool;
}
}
class VideoPlayerApi {
Future<void> initialize() async {
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.initialize', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(null) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<TextureMessage> create(CreateMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.create', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
return TextureMessage.decode(replyMap['result']!);
}
}
Future<void> dispose(TextureMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.dispose', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<void> setLooping(LoopingMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.setLooping', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<void> setVolume(VolumeMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.setVolume', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<void> setPlaybackSpeed(PlaybackSpeedMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.setPlaybackSpeed',
StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<void> play(TextureMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.play', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<PositionMessage> position(TextureMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.position', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
return PositionMessage.decode(replyMap['result']!);
}
}
Future<void> seekTo(PositionMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.seekTo', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<void> pause(TextureMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.pause', StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
Future<void> setMixWithOthers(MixWithOthersMessage arg) async {
final Object encoded = arg.encode();
const BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.VideoPlayerApi.setMixWithOthers',
StandardMessageCodec());
final Map<Object?, Object?>? replyMap =
await channel.send(encoded) as Map<Object?, Object?>?;
if (replyMap == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
details: null,
);
} else if (replyMap['error'] != null) {
final Map<Object?, Object?> error =
replyMap['error'] as Map<Object?, Object?>;
throw PlatformException(
code: error['code'] as String,
message: error['message'] as String?,
details: error['details'],
);
} else {
// noop
}
}
}