Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save le0nidas/244f0311eafe318a08cf6e24aa2b6566 to your computer and use it in GitHub Desktop.
Save le0nidas/244f0311eafe318a08cf6e24aa2b6566 to your computer and use it in GitHub Desktop.
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