getTweenableAccessors method

  1. @override
Map<String, List<Function>> getTweenableAccessors()
override

Returns a Map with the accessors for the GTweenableBlur target.

Implementation

@override
Map<String, List<Function>> getTweenableAccessors() {
  return {
    'blurX': [() => value.blurX, (v) => value.blurX = v],
    'blurY': [() => value.blurY, (v) => value.blurY = v],
    'color': [() => value.color, (v) => value.color = v],
  };
}