Overview

The IELTS Score Package is a simple Dart class that returns a formatted string containing a user's name and IELTS score.

Features

Takes an IELTS score and a name as input.

Returns a formatted string with the provided details.

Installation

To use this package, add it to your Dart or Flutter project:

import 'package:your_package_name/ielts.dart';

Usage

Here’s how you can use the Ielts class:

void main() { Ielts ielts = Ielts(); String result = ielts.ielatsScore('7.5', 'Alice'); print(result); // Output: Your name: Alice and score: 7.5 }

Class Details

Ielts Class

Method: ielatsScore(String score, String name) → String

Parameters:

score: The IELTS score as a string.

name: The name of the person.

Returns:

A formatted string with the name and score.

Contribution

Feel free to contribute by submitting issues or pull requests.

License

This package is available under the MIT License.

Libraries

ielts_package