fromRaw static method

AssembleResource fromRaw(
  1. String source
)

Implementation

static AssembleResource fromRaw(String source) {
  final res = _ResImpl();
  res.loadResource(source);
  return res;
}