value static method

FBModel? value(
  1. String key
)

接收者可以通过该函数获取消息中的数据

This function allows the receiver to get the data in the message

Implementation

static FBModel? value(String key) {
  if (_textIsEmpty(key)) return null;
  var value = instance()._map[key]?.value;
  return value;
}