blob: 981f87cc10be39c371bf158d8090daa1cebbbee6 [file] [log] [blame]
// Copyright 2020 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:pigeon/pigeon.dart';
class Everything {
bool aBool;
int anInt;
double aDouble;
String aString;
Uint8List aByteArray;
Int32List a4ByteArray;
Int64List a8ByteArray;
Float64List aFloatArray;
// ignore: always_specify_types
List aList;
// ignore: always_specify_types
Map aMap;
}
@HostApi()
abstract class HostEverything {
Everything giveMeEverything();
}
@FlutterApi()
abstract class FlutterEverything {
Everything giveMeEverything();
}