TDObject constructor

TDObject(
  1. MethodChannel? channel,
  2. String? a,
  3. String? b
)

Implementation

TDObject(MethodChannel? channel, String? a, String? b) {
  _channel = channel;
  appId = a;
  templateCode = b;
}