PhotoFrame constructor

PhotoFrame(
  1. ImageProvider<Object> picture, {
  2. required IconData icon,
  3. double iconSize = 16,
  4. Color iconColor = Colors.grey,
  5. Color borderColor = Colors.white,
  6. double borderWidth = 6,
  7. Alignment alignment = Alignment.bottomRight,
})

Implementation

PhotoFrame(
  this.picture, {
  required this.icon,
  this.iconSize = 16,
  this.iconColor = Colors.grey,
  this.borderColor = Colors.white,
  this.borderWidth = 6,
  this.alignment = Alignment.bottomRight,
});