Skip to content
View Tembeon's full-sized avatar
:shipit:
:shipit:

Block or report Tembeon

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tembeon/README.md

Header

hi! i'm tembeon

a flutter developer, who loves to learn and likes to code simple. Sometimes I post things on my blog.

Pinned Loading

  1. tem_tools tem_tools Public

    Set of lightweight, focused Dart tools

    Dart 1

  2. analysis_options.yaml for both Dart ... analysis_options.yaml for both Dart and Flutter projects that I use
    1
    include: package:lints/recommended.yaml
    2
    
                  
    3
    analyzer:
    4
      exclude:
    5
        - "**/*.g.dart"
  3. A way to handle null passing in `cop... A way to handle null passing in `copyWith`
    1
    /// Presented in `flutter:foundation`.
    2
    typedef ValueGetter<T> = T Function();
    3
    
                  
    4
    extension ValueGetterX<T> on ValueGetter<T>? {
    5
    
                  
  4. json.dart json.dart
    1
    extension type Json(Map<String, Object?> value) implements Map<String, Object?> {
    2
    
                  
    3
      /// Get a value of type [T] from this [Json] using a shorthand.
    4
      ///
    5
      /// Usage example: