fromMessage static method

GetOptsType fromMessage(
  1. Map<String, dynamic> msg
)

Implementation

static GetOptsType fromMessage(Map<String, dynamic> msg) {
  return GetOptsType(
    ims: msg['ims'],
    limit: msg['limit'],
    topic: msg['topic'],
    user: msg['user'],
  );
}