blob: dea8d0ba14fabafb4c6fe0c878121ed14dcf5f32 [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 'dart:typed_data';
// TODO(hterkelsen): Delete this once the slots change lands?
class PlatformMessage {
final String channel;
final ByteData data;
final PlatformMessageResponse response;
PlatformMessage(this.channel, this.data, this.response);
}
class PlatformMessageResponse {
void complete(Uint8List data) {}
void completeEmpty() {}
}