superhero_api 0.0.1 copy "superhero_api: ^0.0.1" to clipboard
superhero_api: ^0.0.1 copied to clipboard

outdated

Wrapper for superhero api.

Superhero Api Wrapper Dart #

Superhero Api Wrapper for Dart

Usage #

  1. Add superhero_api as a dependency in your pubspec.yaml.

    dependencies:
      superhero_api:
    
  2. Install it

      flutter pub get
    
  3. And import it

      import 'package:superhero_api/superhero_api.dart';
    

API #

  1. Hero

    • Get All

      returns Future of ResponseList

        await superhero.hero.getAll(ParamsModel params)
      
    • Get by ID

      returns Future of ResponseSingle

        await superhero.hero.getById(String id)
      
    • Get by Path

      returns Future of ResponseSingle

        await superhero.hero.getByPath(String path)
      
    • Get by Query

      returns Future of ResponseList

        await superhero.hero.getByQuery(QueryModel query, { ParamsModel params })
      
  2. Appearance

    • Get All

      returns Future of ResponseList

        await superhero.appearance.getAll(ParamsModel params)
      
    • Get by ID

      returns Future of ResponseSingle

        await superhero.appearance.getById(String id)
      
    • Get by Query

      returns Future of ResponseList

        await superhero.appearance.getByQuery(QueryModel query, { ParamsModel params })
      
  3. Origin

    • Get All

      returns Future of ResponseList

        await superhero.origin.getAll(ParamsModel params)
      
    • Get by ID

      returns Future of ResponseSingle

        await superhero.origin.getById(String id)
      
    • Get by Query

      returns Future of ResponseList

        await superhero.origin.getByQuery(QueryModel query, { ParamsModel params })
      
  4. Super Power

    • Get All

      returns Future of ResponseList

        await superhero.superPower.getAll(ParamsModel params)
      
    • Get by ID

      returns Future of ResponseSingle

        await superhero.superPower.getById(String id)
      
    • Get by Query

      returns Future of ResponseList

        await superhero.superPower.getByQuery(QueryModel query, { ParamsModel params })
      

Dependency #

1
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Wrapper for superhero api.

Homepage
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

dio, flutter

More

Packages that depend on superhero_api