ChannelStateResponse constructor

ChannelStateResponse({
  1. required String channelId,
  2. required String status,
  3. BigInt? clientBalanceSats,
  4. BigInt? serverBalanceSats,
  5. int? latestSequenceNumber,
  6. required bool success,
  7. String? error,
})

Implementation

ChannelStateResponse({
  required this.channelId,
  required this.status,
  this.clientBalanceSats,
  this.serverBalanceSats,
  this.latestSequenceNumber,
  required this.success,
  this.error,
}) : super(payload: null);