MethodChannelFull constructor

MethodChannelFull({
  1. required String? skyflowId,
  2. required Type? type,
})

Implementation

MethodChannelFull({required this.skyflowId, required this.type}) {
  var type = this.type == Type.collect ? 'skyflow-collect' : 'skyflow-reveal';
  skyflowChannel = MethodChannel('$type/$skyflowId');
}