Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Created May 24, 2019 13:53
Show Gist options
  • Save Zfinix/3e83a9f43dd93e02c7522d0deda0e7a7 to your computer and use it in GitHub Desktop.
Save Zfinix/3e83a9f43dd93e02c7522d0deda0e7a7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:card/utils/margin_utils.dart';
class CardWidget extends StatelessWidget {
final String amount;
final String name;
final String expiry;
const CardWidget({Key key, @required this.amount, @required this.name, @required this.expiry});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment