multiplyProperty method

Future<void> multiplyProperty(
  1. dynamic property,
  2. dynamic value
)

multiplies the specified property by the value

Implementation

Future<void> multiplyProperty(property, value) {
  return socket.multiplyProperty(property, value);
}