copyWithWrapped method

CurrentDateTime$Response copyWithWrapped({
  1. Wrapped<String?>? currentDateTime,
})

Implementation

CurrentDateTime$Response copyWithWrapped(
    {Wrapped<String?>? currentDateTime}) {
  return CurrentDateTime$Response(
      currentDateTime: (currentDateTime != null
          ? currentDateTime.value
          : this.currentDateTime));
}