fixes for review

This commit is contained in:
Deven Joshi
2020-12-29 18:53:05 +05:30
parent f8cf3a7d29
commit 9c53a295ae
6 changed files with 87 additions and 8 deletions
+12
View File
@@ -757,4 +757,16 @@ class StreamSvgIcon extends StatelessWidget {
height: size,
);
}
factory StreamSvgIcon.Icon_user_settings({
double size,
Color color,
}) {
return StreamSvgIcon(
assetName: 'Icon_user_settings.svg',
color: color,
width: size,
height: size,
);
}
}