copyWith method

CallStatePending copyWith({
  1. bool? isCreated,
  2. bool? isReceived,
})

Implementation

CallStatePending copyWith({bool? isCreated, bool? isReceived}) =>
    CallStatePending(
      isCreated: isCreated ?? this.isCreated,
      isReceived: isReceived ?? this.isReceived,
    );