I need to convert CSS LinearGradient to Flutter LinearGradient Here is the CSS code:
background-image: linear-gradient(134deg, #d6dcf4 0%, #ffffff 100%);
Here is my Flutter code:
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [ Color(0x0ffd6dcf4).withOpacity(0),
Colors.white.withOpacity(1),
],
stops: [
0.3,
1
])
How does this should look on Flutter ?

