Line data Source code
1 : part of './environment.devicekit.dart'; 2 : 3 : class NativeCommunicationMetadata { 4 : // ignore: non_constant_identifier_names 5 : static String TAG = 'FlutterNativeMirrorInstance'; 6 : static String scheme = 'com.medm.just_ble'; 7 6 : static String platformMethodChannel = scheme + '.methods'; 8 6 : static String hostEventChannel = scheme + '.events'; 9 : static String businessNamespace = 10 : // 'br.com.alvertabbaros.flutter_medm_devicekit.business.BusinessMethods'; 11 : 'br.com.alvertabbaros.flutter_native_mirror_example.business.BusinessMethods'; 12 : }