decode static method
Implementation
static LocationPuck2D decode(Object result) {
result as List<Object?>;
return LocationPuck2D(
topImage: result[0] as Uint8List?,
bearingImage: result[1] as Uint8List?,
shadowImage: result[2] as Uint8List?,
scaleExpression: result[3] as String?,
);
}