copyFromMsg static method

FMixItem copyFromMsg(
  1. FMixItemMsg msg
)

Implementation

static FMixItem copyFromMsg(FMixItemMsg msg) {
  return FMixItem()
    ..id = msg.id
    ..tag = msg.tag
    ..text = msg.text;
}