ncmb 0.0.3 copy "ncmb: ^0.0.3" to clipboard
ncmb: ^0.0.3 copied to clipboard

outdated

Dart and Flutter library for Nifcloud mobile backend(NCMB).

NCMB for Dart w/ Flutter #

Dart and Flutter library for Nifcloud mobile backend(NCMB).

Usage #

Init #

import 'package:ncmb/ncmb.dart';
NCMB ncmb = new NCMB('YOUR_APPLICATION_KEY', 'YOUR_CLIENT_KEY');

DataStore #

Create data

NCMBObject item = ncmb.Object('Item')
  ..set('msg', 'Hello World')
  ..set('array', ['a', 'b'])
  ..set('int', 1)
  ..set('name', 'Atsushi');
await item.save();
debugPrint(item.get('objectId'));

LICENSE #

MIT.

3
likes
0
pub points
56%
popularity

Publisher

unverified uploader

Dart and Flutter library for Nifcloud mobile backend(NCMB).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

crypto, http

More

Packages that depend on ncmb