Skip to content

Instantly share code, notes, and snippets.

import 'package:flutter/material.dart';
class CarBox extends StatefulWidget {
final String carIconUrl;
final String title;
final bool selected;
final Function onTap;
CarBox(
{Key key, this.carIconUrl, this.title, this.selected = false, this.onTap})
: super(key: key);