blob: 398e9f09e5a92e9d8b82ceef887fde848c6dd902 [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.
#ifndef FLUTTER_FLUTTERDARTVMSERVICEPUBLISHER_H_
#define FLUTTER_FLUTTERDARTVMSERVICEPUBLISHER_H_
#import <Foundation/Foundation.h>
@interface FlutterDartVMServicePublisher : NSObject
- (instancetype)initWithEnableVMServicePublication:(BOOL)enableVMServicePublication
NS_DESIGNATED_INITIALIZER;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
@property(nonatomic, retain, readonly) NSURL* url;
@end
#endif // FLUTTER_FLUTTERDARTVMSERVICEPUBLISHER_H_