Skip to content

Instantly share code, notes, and snippets.

View Henrydykee's full-sized avatar
💻
Remote

Dike Ugochukwu Henrydykee

💻
Remote
View GitHub Profile
@Henrydykee
Henrydykee / main.dart
Created October 25, 2023 14:49
crimson-dryad-4262
class StoreObject {
String storeName;
StoreObject(this.storeName);
}
class MyObject {
String property1;
List<StoreObject> property2;
@Henrydykee
Henrydykee / SimpleWallet.sol
Created July 21, 2022 19:09
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.17+commit.d19bba13.js&optimize=false&runs=200&gist=
pragma solidity ^0.5.17;
contract SimpleWallet {
address public owner;
constructor() public {
owner = msg.sender;
}
@Henrydykee
Henrydykee / flutter-ci.yml
Created July 13, 2021 18:45 — forked from aagarwal1012/flutter-ci.yml
CI for your Flutter apps on GitHub Actions.
name: Flutter CI
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
- master
# on: push # Default will running for every branch.