Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 299 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 299 Bytes

flutter_walle

Get channel information (by meituan walle) from within the Flutter application.

Usage

Example:

import 'package:flutter_walle/flutter_walle.dart';

String channel = 'Unknown';
try {
    channel = await FlutterWalle.channel;
} catch (e) {
    print(e.toString());
}