blob: 673ff56334f980751dccbd2ea0f052a5334207e5 [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 SearchRequest {
String query;
}
class SearchReply {
String result;
}
@FlutterApi()
abstract class Api {
SearchReply search(SearchRequest request);
}
void configurePigeon(PigeonOptions options) {
options.objcOptions.prefix = 'AC';
}