copyWith method

TerminalRegisteredResponse copyWith({
  1. TerminalId? data,
})

Implementation

TerminalRegisteredResponse copyWith({
  TerminalId? data,
}) {
  return TerminalRegisteredResponse(
    data: data ?? this.data,
  );
}