copyWith method

XSTSXUI copyWith({
  1. String? uhs,
  2. String? xid,
})

Implementation

XSTSXUI copyWith({
  String? uhs,
  String? xid,
}) {
  return XSTSXUI(
    uhs: uhs ?? this.uhs,
    xid: xid ?? this.xid,
  );
}