of static method

Urlencoded of(
  1. Context context
)

Get the Urlencoded instance from the Context.

Implementation

static Urlencoded of(Context context) {
  if (context.contains(key)) {
    return context[key] as Urlencoded;
  }

  return _instance ??= Urlencoded();
}