VendingMachineCard constructor

const VendingMachineCard({
  1. required VendingMachine vending_machine,
  2. required Function remove_vending_machine_callback,
  3. required String owner_name,
  4. required Color text_color,
  5. required Color textfield_color,
  6. required Color topbar_color,
})

Implementation

const VendingMachineCard({
  required this.vending_machine,
  required this.remove_vending_machine_callback,
  required this.owner_name,
  required this.text_color,
  required this.textfield_color,
  required this.topbar_color,
});