Policy constructor

const Policy({
  1. int? handshake,
  2. @JsonKey.new(name: 'connIdle') int? connectionIdle,
  3. int? uplinkOnly,
  4. int? downlinkOnly,
  5. bool? statsUserUplink,
  6. bool? statsUserDownlink,
  7. bool? statsUserOnline,
  8. int? bufferSize,
})

Implementation

const factory Policy({
  int? handshake,
  @JsonKey(name: 'connIdle') int? connectionIdle,
  int? uplinkOnly,
  int? downlinkOnly,
  bool? statsUserUplink,
  bool? statsUserDownlink,
  bool? statsUserOnline,
  int? bufferSize,
}) = _Policy;