copyWith method

CurrentDateTime$Response copyWith({
  1. String? currentDateTime,
})

Implementation

CurrentDateTime$Response copyWith({String? currentDateTime}) {
  return CurrentDateTime$Response(
      currentDateTime: currentDateTime ?? this.currentDateTime);
}