Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
public void writeToParcel(@NotNull Parcel parcel, int flags) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
Companion.write(this, parcel, flags);
}
@NotNull
public final Task createFromParcel(@NotNull Parcel in) {
Intrinsics.checkNotNullParameter(in, "in");
return Task.Companion.create(in);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment