infobip_voice 0.0.1 infobip_voice: ^0.0.1 copied to clipboard
Infobip voice is a Flutter plugin which enables you to take advantage of Infobip platform, giving you the ability to enrich yCour apps with real-time communications in minimum time.
import 'package:flutter/material.dart';
import 'ui/pages/login_page/login_page.dart';
void main() {
runApp(MaterialApp(
title: 'InfoBip WebRTC',
theme: ThemeData(
brightness: Brightness.light,
),
darkTheme: ThemeData(
brightness: Brightness.dark,
),
themeMode: ThemeMode.dark,
home: const LoginPage(),
));
}