This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Package imports: | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_triple/flutter_triple.dart'; | |
// | |
abstract class ListenableStore<Error extends Object, State extends Object> | |
extends ValueNotifier<Triple<Error, State>> { | |
ListenableStore(State state) : super(Triple(state: state)); | |
State get state => value.state; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company.retrofit2.annotation; | |
import java.lang.annotation.Documented; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.Target; | |
import static java.lang.annotation.ElementType.METHOD; | |
import static java.lang.annotation.RetentionPolicy.RUNTIME; | |
/** |