copyFromMsg static method

FEffectResource copyFromMsg(
  1. FResourceMsg msg
)

Implementation

static FEffectResource copyFromMsg(FResourceMsg msg) {
  return FEffectResource()
    ..id = msg.id
    ..srcType = msg.srcType
    ..loadType = msg.loadType
    ..tag = msg.tag
    ..bitmapByte = msg.bitmapByte
    ..text = msg.text;
}