Skip to content

Instantly share code, notes, and snippets.

View ninnepinne's full-sized avatar

Fredrik Dahlén ninnepinne

View GitHub Profile
import 'package:flutter/material.dart';
class ABCModel extends InheritedModel<String> {
ABCModel({
Key key,
this.a,
this.b,
this.c,
Widget child,
}) : super(key: key, child: child);