fromValue static method

StringValueMap fromValue(
  1. dynamic value
)

Converts specified value into StringValueMap.

  • value value to be converted Returns a newly created StringValueMap.

See setAsObject

Implementation

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