copyWith method

ChatCallCredentials copyWith({
  1. String? val,
})

Returns a copy of these ChatCallCredentials with the given val.

Implementation

ChatCallCredentials copyWith({String? val}) =>
    ChatCallCredentials(val ?? this.val);