tfPlanAsBytes property

List<int> get tfPlanAsBytes

Implementation

core.List<core.int> get tfPlanAsBytes => convert.base64.decode(tfPlan!);
set tfPlanAsBytes (List<int> bytes_)

Implementation

set tfPlanAsBytes(core.List<core.int> bytes_) {
  tfPlan = convert.base64
      .encode(bytes_)
      .replaceAll('/', '_')
      .replaceAll('+', '-');
}