Connector constructor

const Connector(
  1. {Key? key,
  2. required String client,
  3. required String token,
  4. double? height = 96,
  5. double? width = 256}
)

Implementation

const Connector({
  Key? key,
  required this.client,
  required this.token,
  this.height = 96,
  this.width = 256,
});