copyWith method

DeleteAllCallMessages copyWith({
  1. bool? revoke,
})

Implementation

DeleteAllCallMessages copyWith({
  bool? revoke,
}) =>
    DeleteAllCallMessages(
      revoke: revoke ?? this.revoke,
    );