Skip to content

Instantly share code, notes, and snippets.

View trentgoing's full-sized avatar

Trent Going trentgoing

  • New York, NY USA
View GitHub Profile
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
class Destination {
const Destination(this.index, this.title, this.icon, this.color);
final int index;
final String title;
final IconData icon;
final MaterialColor color;
}