fromValue static method

Context fromValue(
  1. dynamic value
)

Creates a new Parameters object filled with key-value pairs from specified object.

  • value an object with key-value pairs used to initialize a new Parameters. Returns a new Context object.

Implementation

static Context fromValue(value) {
  return Context(value);
}