RawCode constructor

RawCode(
  1. String code
)

Example

RawCode('var name = user?.name ?? "'ahmet'"')

Output: var name = user?.name ?? 'ahmet'

Implementation

RawCode(this.code);