copyWith method

AsyncId copyWith({
  1. String? asyncId,
})

Implementation

AsyncId copyWith({String? asyncId}) {
  return AsyncId(
    asyncId: asyncId ?? this.asyncId,
  );
}