deepCopy static method

DialogModel deepCopy(
  1. DialogModel from
)

Implementation

static DialogModel deepCopy(DialogModel from) {
  var copyOfDialogModel = from.copyWith();
  return copyOfDialogModel;
}