screenTranslateTransform static method
Implementation
static Matrix4 screenTranslateTransform(
DeviceInfo device, [
bool inverted = false,
]) {
final translate = screenTranslate(device);
return Matrix4.translationValues(translate.dx, translate.dy, 0);
}